/* style/terms-conditions.css */
.page-terms-conditions {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-terms-conditions__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  background-color: rgba(139, 0, 0, 0.2); /* Semi-transparent dark red overlay */
  border-bottom: 2px solid #FFD700;
}

.page-terms-conditions__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-terms-conditions__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-terms-conditions__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

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

.page-terms-conditions__section {
  margin-bottom: 30px;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for sections */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-terms-conditions__section-title {
  font-size: 2em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-terms-conditions__section-paragraph {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-terms-conditions__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
  color: #fff;
  text-decoration: underline;
}

.page-terms-conditions__link--contact {
  background-color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 15px;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-terms-conditions__link--contact:hover {
  background-color: #a00000;
  text-decoration: none;
}

.page-terms-conditions__section-image {
  width: 100%;
  max-width: 600px; /* Ensure content images are not too wide */
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #8B0000; /* Dark red background for CTA */
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__cta-text {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text on gold button */
  padding: 15px 35px;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta-button:hover {
  background-color: #ffe066;
  transform: translateY(-3px);
  color: #660000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-terms-conditions__hero-title {
    font-size: 2.8em;
  }

  .page-terms-conditions__hero-description {
    font-size: 1.1em;
  }

  .page-terms-conditions__section-title {
    font-size: 1.8em;
  }

  .page-terms-conditions__section-paragraph {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions__hero-title {
    font-size: 2.2em;
  }

  .page-terms-conditions__hero-description {
    font-size: 0.95em;
  }

  .page-terms-conditions__section-title {
    font-size: 1.6em;
  }

  .page-terms-conditions__section-paragraph {
    font-size: 0.9em;
  }

  .page-terms-conditions__hero-section,
  .page-terms-conditions__content-area {
    padding: 30px 15px;
  }

  .page-terms-conditions__section-image,
  .page-terms-conditions__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-terms-conditions__cta-text {
    font-size: 1.2em;
  }

  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero-title {
    font-size: 1.8em;
  }

  .page-terms-conditions__hero-description {
    font-size: 0.85em;
  }

  .page-terms-conditions__section-title {
    font-size: 1.4em;
  }

  .page-terms-conditions__section-paragraph {
    font-size: 0.85em;
  }

  .page-terms-conditions__cta-text {
    font-size: 1em;
  }

  .page-terms-conditions__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
}