/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f9fc;
  color: #000;
}

/* Logo */
.logo-container {
  text-align: center;
  padding: 20px;
}

.logo {
  max-height: 60px;
}

/* Privacy Policy Scroll Container */
.embed-container {
  display: flex;
  justify-content: center;
  padding: 0 20px 100px;
}

.embed-box {
  max-width: 800px;
  width: 100%;
  height: 80vh;
  overflow-y: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Back Button */
.back-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  padding: 12px 22px;
  background-color: #000 !important; /* Forces black background */
  color: rgb(145, 145, 145);
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 10px;
  z-index: 9999;
  cursor: pointer;
  animation: pulse 2s ease-in-out infinite, tilt 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(65, 81, 180, 0.6);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Underline text only */
.back-button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  height: 2px;
  width: 0%;
  background-color: #4151b4;
  transition: width 0.4s ease-in-out;
}

.back-button:hover::after {
  width: 100%;
}

.back-button:hover {
  color: #4151b4;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 16px rgba(65, 81, 180, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(65, 81, 180, 0.8);
  }
}

@keyframes tilt {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-1.5deg);
  }
  75% {
    transform: rotate(1.5deg);
  }
}