.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-bottom: 60px;
}

.page-terms-conditions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, #F2C14E20 0%, #0A0A0A 100%);
  overflow: hidden;
}

.page-terms-conditions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-terms-conditions__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-terms-conditions__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-terms-conditions__hero-description {
  font-size: 18px;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-terms-conditions__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-terms-conditions__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-terms-conditions__btn-primary:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E6B02D 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-terms-conditions__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #F2C14E; /* Main Color */
}

.page-terms-conditions__btn-secondary:hover {
  background: #222222;
  color: #FFD86A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__section {
  padding: 40px 20px;
  margin-bottom: 20px;
  background-color: #0A0A0A; /* Background */
}

.page-terms-conditions__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-terms-conditions__section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-terms-conditions__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #FFD36B; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-terms-conditions__text-block {
  font-size: 17px;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 15px;
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #FFF6D6;
}

.page-terms-conditions__ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #FFF6D6;
}

.page-terms-conditions__list-item {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.page-terms-conditions__link {
  color: #F2C14E; /* Main Color */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
  color: #FFD36B; /* Glow */
}

.page-terms-conditions__image-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
  background-color: #111111; /* Card BG */
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
}

.page-terms-conditions__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.page-terms-conditions__image-caption {
  font-size: 15px;
  color: #FFF6D6;
  text-align: center;
  opacity: 0.8;
}

.page-terms-conditions__cta-center {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-terms-conditions__faq-section {
  background-color: #111111; /* Card BG */
  border-top: 1px solid #3A2A12; /* Border */
}

.page-terms-conditions__faq-list {
  margin-top: 30px;
}

details.page-terms-conditions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #0A0A0A; /* Background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
details.page-terms-conditions__faq-item summary.page-terms-conditions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  color: #FFD36B; /* Glow */
  font-weight: 600;
}
details.page-terms-conditions__faq-item summary.page-terms-conditions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-terms-conditions__faq-item summary.page-terms-conditions__faq-question:hover {
  background: #1A1A1A;
}
.page-terms-conditions__faq-qtext {
  flex: 1;
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6;
}
.page-terms-conditions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Main Color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-terms-conditions__faq-item .page-terms-conditions__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A; /* Background */
  border-top: 1px solid #3A2A12;
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  color: #FFF6D6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-terms-conditions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-terms-conditions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-terms-conditions__main-title {
    font-size: 28px;
  }

  .page-terms-conditions__hero-description {
    font-size: 16px;
  }

  .page-terms-conditions__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-terms-conditions__section {
    padding: 30px 15px;
  }

  .page-terms-conditions__section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .page-terms-conditions__sub-title {
    font-size: 20px;
    margin-top: 25px;
  }

  .page-terms-conditions__text-block, .page-terms-conditions__list-item {
    font-size: 15px;
  }

  .page-terms-conditions__image-text-block {
    padding: 15px;
  }

  .page-terms-conditions__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-terms-conditions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  details.page-terms-conditions__faq-item summary.page-terms-conditions__faq-question {
    padding: 15px;
  }
  .page-terms-conditions__faq-qtext {
    font-size: 15px;
  }
  .page-terms-conditions__faq-toggle {
    font-size: 20px;
    width: 24px;
  }
  details.page-terms-conditions__faq-item .page-terms-conditions__faq-answer {
    padding: 0 15px 15px;
  }
}