/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1f365c 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-terms-conditions__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-terms-conditions__section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e9ecef;
}

.page-terms-conditions__section--alt-bg {
  background-color: #f0f2f5; /* Light grey for contrast */
}

.page-terms-conditions__section-title {
  font-size: 2.5em;
  color: #0A192F; /* Dark blue for headings */
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 3px solid #E0B92B;
  padding-bottom: 15px;
  display: inline-block;
}

.page-terms-conditions__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #495057;
}

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

.page-terms-conditions__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-terms-conditions__list-strong {
  color: #0A192F;
}

.page-terms-conditions__section-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 40px auto 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__link {
  color: #E0B92B; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
}

.page-terms-conditions__link:hover {
  text-decoration: underline;
  color: #d1a726; /* Slightly darker gold on hover */
}

.page-terms-conditions__section--call-to-action {
  background-color: #0A192F; /* Dark blue background for CTA */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-terms-conditions__cta-content {
  max-width: 900px;
}

.page-terms-conditions__cta-title {
  font-size: 3em;
  color: #E0B92B; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-terms-conditions__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-terms-conditions__button {
  display: inline-block;
  background-color: #E0B92B; /* Gold button */
  color: #0A192F; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 10px;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__button:hover {
  background-color: #d1a726; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-terms-conditions__button--secondary {
  background-color: transparent;
  color: #E0B92B;
  border: 2px solid #E0B92B;
}

.page-terms-conditions__button--secondary:hover {
  background-color: #E0B92B;
  color: #0A192F;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-terms-conditions__hero-title {
    font-size: 2.5em;
  }

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

  .page-terms-conditions__section-title {
    font-size: 2em;
    text-align: center;
  }

  .page-terms-conditions__text,
  .page-terms-conditions__list li {
    font-size: 1em;
  }

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

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

  .page-terms-conditions__button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

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