/* 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 {
  padding: 4.5rem 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: 4.5rem 1rem;
  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: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #2c2c2c;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: slideInUp 1s ease-out 0.3s forwards;
  font-family: "Robecha-Daniera-Regular";
}

@media screen and (max-width: 991px) {
  .page-title {
    font-size: 2.3rem;
  }
}

.intro-text {
  font-size: 17px !important;
  font-weight: 400 !important;
  color: #050405 !important;
  max-width: 1200px !important;
  margin: 0 auto;
  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;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Main Container */

.container {
  max-width: 1125px;
  margin: 0 auto;
  padding: 1rem 1rem;
  animation: slideInUp 1s ease-out 0.3s forwards;
}

.payment-methods {
  margin-bottom: 2rem;
}
.payment-methods section {
  margin-bottom: 2rem;
}

.payment-methods #h2,
.payment-methods h2 {
  font-size: 23px;
  font-weight: 600;
  color: #d9b771;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.payment-methods #h3,
.payment-methods h3 {
  display: block;
  margin-bottom: 22px !important;
  font-weight: 700 !important;
}

.payment-methods p,
.payment-methods .p {
  color: #252525;
  line-height: 1.4;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.payment-methods strong,
.payment-methods .strong {
  font-weight: 700;
  color: #252525;
  font-size: 16px;
}

.bullet-point {
  margin-bottom: 1rem;
}

.bullet-point strong {
  color: #252525;
  font-weight: 600;
  font-size: 18px;
}

.sub-list {
  list-style: disc;
  list-style-position: inside;
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.sub-list li {
  margin-bottom: 0.5rem;
  color: #252525;
}

.subsection {
  margin-bottom: 2rem;
}

.subsection-title {
  font-size: 18px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .intro-text,
  .section-content {
    font-size: 0.95rem;
  }
  .page-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem 0.75rem;
  }

  .section-title {
    font-size: 1.125rem;
  }
}

/* FAQ CTA Section */
.faq-cta-section {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow-y: hidden;
}

.faq-cta-section .faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 800px;
}

.faq-cta-section .faq-bg img {
  width: 100%;
  height: 100%;
}

.faq-cta-section h2 {
  font-size: 2.9rem;
  font-weight: 300;
  color: #d9b771;
  margin-bottom: 1.5rem;
  font-family: "Robecha-Daniera-Regular";
}

.faq-cta-section p {
  color: white;
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
  font-family: "Montserrat";
}
@media screen and (max-width: 767px) {
  .faq-cta-section p {
    width: 96%;
    margin: auto;
  }
}

.faq-cta-section .faq-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.reach-out-link {
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

.reach-out-link:hover {
  color: #fde68a;
}

.btn-faq {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 3rem;
}

.btn-faq:hover {
  background: white;
  color: #047857;
}

/* Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .product-header h1 {
    font-size: 2rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sequence-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .waveform-step {
    text-align: center;
  }

  .table-container {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 800px;
  }
}

@media (max-width: 480px) {
  .certification-badges {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .badge {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
  }

  .main-image {
    /* height: 16rem; */
  }

  .pricing-option {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .option-pricing {
    text-align: center;
  }
}

.question {
  display: block;
  margin-bottom: 3px !important;
  font-size: 17px !important;
  /* letter-spacing: 1px; */
  font-weight: 650 !important;
}

.custom-section-header {
  font-size: 15px;
  margin-top: 30px;
  margin-bottom: 2.2rem;
}

.answer {
  margin-left: 15px !important;
  margin-bottom: 20px !important;
  display: block !important;
}

.bold-text {
  font-weight: 600;
}

.section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 23px;
    font-weight: 600;
    animation: slideInUp 1s ease-out 0.3s forwards !important;
    color: #d9b771;
    margin-bottom: 15px;
    letter-spacing: 0.01rem;
}

.section-content {
    color: #050405;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
  .intro-text, .section-content {
      font-size: 0.95rem;
  }
  
  .section-title {
      font-size: 1.25rem;
  }
}
