.page-terms-conditions__main-content-wrapper {
  padding-top: 120px; /* Desktop: Clear fixed header */
  padding-bottom: 60px;
  background-color: #0a0a0a; /* Body background is dark */
  color: #ffffff; /* Default text color for dark background */
}

.page-terms-conditions__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-terms-conditions__title {
  font-size: 38px;
  font-weight: bold;
  color: #E3B23C; /* Highlight title with accent color */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-terms-conditions__introduction {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
  color: #f0f0f0;
}

.page-terms-conditions__highlight {
  color: #E3B23C;
  font-weight: bold;
}

.page-terms-conditions__content-block {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__light-bg {
  background: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-terms-conditions__heading {
  font-size: 28px;
  font-weight: bold;
  color: #0A2463; /* Use primary color for main headings */
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #E3B23C;
  padding-bottom: 10px;
}

.page-terms-conditions__sub-heading {
  font-size: 22px;
  font-weight: bold;
  color: #0A2463; /* Use primary color for sub-headings */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-terms-conditions__content-block p,
.page-terms-conditions__content-block li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333333;
  text-align: justify;
}

.page-terms-conditions__content-block ul {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-terms-conditions__content-block ul li {
  margin-bottom: 8px;
}

.page-terms-conditions__link {
  color: #0A2463; /* Primary color for links */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
  color: #E3B23C; /* Accent color on hover */
}

.page-terms-conditions__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-terms-conditions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block; /* Ensures image does not have extra space below */
  margin: 0 auto;
}

/* CTA Section */
.page-terms-conditions__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 40px 30px;
  background: linear-gradient(135deg, #0A2463, #3a5c9b); /* Darker gradient for CTA */
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-terms-conditions__cta-text {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.5;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E3B23C; /* Accent color for button */
  color: #0A2463; /* Dark text for button */
  text-decoration: none;
  border-radius: 50px; /* Pill shape */
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-button:hover {
  background: #ffc107; /* Slightly lighter accent on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section Styling */
.page-terms-conditions__faq-list {
  margin-top: 30px;
}

.page-terms-conditions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-terms-conditions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-terms-conditions__faq-item.active .page-terms-conditions__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-terms-conditions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-terms-conditions__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-terms-conditions__faq-question:active {
  background: #eeeeee;
}

.page-terms-conditions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-terms-conditions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-terms-conditions__faq-item.active .page-terms-conditions__faq-toggle {
  color: #333;
  transform: rotate(45deg); /* Change + to X or - */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-terms-conditions__main-content-wrapper {
    padding-top: 100px !important; /* Mobile: Clear fixed header */
    padding-bottom: 40px;
  }

  .page-terms-conditions__container {
    padding: 0 15px;
  }

  .page-terms-conditions__title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .page-terms-conditions__introduction {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-terms-conditions__content-block {
    padding: 20px;
  }

  .page-terms-conditions__heading {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .page-terms-conditions__sub-heading {
    font-size: 19px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .page-terms-conditions__content-block p,
  .page-terms-conditions__content-block li {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .page-terms-conditions__image-wrapper {
    margin: 20px 0;
  }

  .page-terms-conditions__cta-section {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .page-terms-conditions__cta-text {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .page-terms-conditions__cta-button {
    padding: 12px 30px;
    font-size: 17px;
  }

  .page-terms-conditions__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-terms-conditions__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-terms-conditions__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-terms-conditions__faq-answer {
    padding: 0 15px;
  }
  
  .page-terms-conditions__faq-item.active .page-terms-conditions__faq-answer {
    padding: 15px !important;
  }

  .page-terms-conditions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-terms-conditions__main-content-wrapper,
  .page-terms-conditions__container,
  .page-terms-conditions__content-block,
  .page-terms-conditions__cta-section,
  .page-terms-conditions__faq-list,
  .page-terms-conditions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}