.page-terms-conditions {
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px;
}

.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, header offset handled by body */
  background: linear-gradient(180deg, #7A0E0E 0%, #B71C1C 100%);
  border-bottom: 5px solid #F2B544;
}

.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 {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-terms-conditions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFCC66; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__intro-text {
  font-size: 1.1rem;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red for contrast on gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #F4D34D; /* Gold border */
}

.page-terms-conditions__cta-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-terms-conditions__section-wrapper {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Border */
}

.page-terms-conditions__article {
  color: #FFF5E1; /* Text Main */
}

.page-terms-conditions__heading {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #F4D34D; /* Gold */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main */
}

.page-terms-conditions__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

.page-terms-conditions__list-item strong {
  color: #F4D34D; /* Gold */
}

.page-terms-conditions__link {
  color: #F2B544; /* Border for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.page-terms-conditions__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-terms-conditions__image--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.page-terms-conditions__image--left {
  float: left;
  max-width: 400px;
  margin-right: 30px;
  margin-bottom: 20px;
}

.page-terms-conditions__image--right {
  float: right;
  max-width: 400px;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-terms-conditions__faq-list {
  margin-top: 40px;
  clear: both; /* Clear floats from images */
}

details.page-terms-conditions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #7A0E0E; /* Deep Red */
  box-shadow: 0 2px 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;
  color: #FFF5E1; /* Text Main */
}

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: #C91F17; /* Primary Color */
}

.page-terms-conditions__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F4D34D; /* Gold */
}

.page-terms-conditions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFCC66; /* Glow */
  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: #D32F2F; /* Card BG */
  border-radius: 0 0 8px 8px;
  color: #FFF5E1; /* Text Main */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-terms-conditions__image--left,
  .page-terms-conditions__image--right {
    float: none;
    margin: 30px auto;
    max-width: 100%;
  }
}

@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: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-terms-conditions__intro-text {
    font-size: 0.95rem;
  }

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

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

  .page-terms-conditions__section-wrapper {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-terms-conditions__heading {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-terms-conditions p,
  .page-terms-conditions__list-item {
    font-size: 0.95rem;
  }

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

  .page-terms-conditions__faq-list {
    margin-top: 30px;
  }
  
  details.page-terms-conditions__faq-item summary.page-terms-conditions__faq-question {
    padding: 15px;
  }
  .page-terms-conditions__faq-qtext {
    font-size: 1rem;
  }
  .page-terms-conditions__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-terms-conditions__faq-item .page-terms-conditions__faq-answer {
    padding: 0 15px 15px;
  }
}