/* style/terms-conditions.css */

/* Base styles for the terms-conditions page */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0d0d0d; /* Slightly lighter than #000 for sections */
}

/* Top padding for the first content section to clear fixed header */
.page-terms-conditions__hero-banner {
  padding-top: 120px; /* Adjust as needed for fixed header height */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #007bff, #0056b3); /* Primary brand color gradient */
  color: #ffffff;
  text-align: center;
}

.page-terms-conditions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-terms-conditions__main-heading {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffc107; /* Accent color for main heading */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__hero-description {
  font-size: 1.2em;
  line-height: 1.8;
  opacity: 0.9;
}

.page-terms-conditions__content-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background for content */
  color: #ffffff; /* Light text */
}

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

.page-terms-conditions__section-title {
  font-size: 2.5em;
  color: #ffc107; /* Accent color for section titles */
  margin-top: 50px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(255, 193, 7, 0.3);
  padding-bottom: 15px;
}

.page-terms-conditions__sub-section-title {
  font-size: 1.8em;
  color: #007bff; /* Primary brand color for sub-section titles */
  margin-top: 35px;
  margin-bottom: 20px;
}

.page-terms-conditions__paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #e0e0e0;
}

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

.page-terms-conditions__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-terms-conditions__link {
  color: #ffc107; /* Accent color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.page-terms-conditions__image--large {
  width: 90%;
  max-width: 900px;
}

.page-terms-conditions__image--medium {
  width: 80%;
  max-width: 700px;
}

.page-terms-conditions__image--small {
  width: 70%;
  max-width: 500px;
}

.page-terms-conditions__cta-section {
  background: linear-gradient(90deg, #007bff, #0056b3); /* Primary brand color gradient */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-terms-conditions__cta-container {
  max-width: 800px;
}

.page-terms-conditions__cta-title {
  font-size: 2.8em;
  color: #ffc107;
  margin-bottom: 20px;
}

.page-terms-conditions__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0.9;
}

.page-terms-conditions__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-terms-conditions__btn-primary {
  background-color: #ffc107; /* Accent color for primary button */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

.page-terms-conditions__btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 1024px) {
  .page-terms-conditions__main-heading {
    font-size: 2.8em;
  }

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

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

  .page-terms-conditions__cta-title {
    font-size: 2.4em;
  }

  .page-terms-conditions__image--large {
    width: 95%;
  }

  .page-terms-conditions__image--medium {
    width: 85%;
  }

  .page-terms-conditions__image--small {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions__hero-banner {
    padding-top: 100px; /* Adjust for mobile fixed header */
    padding-bottom: 40px;
  }

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

  .page-terms-conditions__main-heading {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

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

  .page-terms-conditions__content-section {
    padding: 40px 0;
  }

  .page-terms-conditions__section-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-terms-conditions__sub-section-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-terms-conditions__paragraph,
  .page-terms-conditions__list-item {
    font-size: 0.95em;
  }

  .page-terms-conditions__image {
    margin: 30px auto;
  }

  .page-terms-conditions__image--large,
  .page-terms-conditions__image--medium,
  .page-terms-conditions__image--small {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-terms-conditions__cta-section {
    padding: 60px 15px;
  }

  .page-terms-conditions__cta-title {
    font-size: 2em;
  }

  .page-terms-conditions__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-terms-conditions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

/* Contrast Fixes */
.page-terms-conditions__dark-bg {
  color: #ffffff; /* Deep dark background, force light text */
}

.page-terms-conditions__light-bg {
  color: #ffffff; /* Slightly lighter dark background, light text */
}

.page-terms-conditions p,
.page-terms-conditions li {
  color: #e0e0e0; /* Ensure readability for main text */
}

.page-terms-conditions__btn-primary {
  background-color: #ffc107;
  color: #000000; /* Force dark text on accent button for contrast */
}