/* font-family: "Montserrat", sans-serif; */
/* font-family: "Robecha-Daniera-Regular"; */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #252525;
  background-color: #fff;
}

/* Header Section with Beige Background */
.header-section {
  /* background: url("../../assets/images/faq/faqbg.png"); */
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.terms-header-section {
  /* background: url("../../assets/images/terms/termsbg.png"); */
  padding: 4rem 1rem;
  padding-bottom: 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.header-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  font-weight: 400;
  color: #2c2c2c;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: slideInUp 1s ease-out 0.3s forwards;
  font-family: "Robecha-Daniera-Regular";
}

.intro-text {
  font-size: 16px;
  color: #050505;
  max-width: 883px;
  letter-spacing: 0.5px;
  font-weight: 300;
  margin: 0 auto;
  width: 77%;
  line-height: 1.6;
  opacity: 0;
  animation: slideInUp 1s ease-out 0.6s forwards;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 1200px) {
  .intro-text {
    margin-top: 30px;
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .intro-text {
    width: 100%;
  }
  .page-title {
    font-size: 2.25rem;
  }
}

.button-animation {
  opacity: 0;
  animation: slideInUp 1s ease-out 0.6s forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
