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

.page-terms-conditions__hero {
  background-color: #004D99; /* Primary color */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

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

.page-terms-conditions__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Secondary color for emphasis */
}

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  opacity: 0.9;
}

.page-terms-conditions__content {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.page-terms-conditions__section {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  padding: 30px;
}

.page-terms-conditions__section-title {
  color: #004D99; /* Primary color */
  font-size: 1.8em;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700; /* Secondary color for accent */
  padding-bottom: 10px;
}

.page-terms-conditions__section p {
  margin-bottom: 15px;
}

.page-terms-conditions__section ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-terms-conditions__section ul li {
  margin-bottom: 8px;
}

.page-terms-conditions__section a {
  color: #004D99; /* Primary color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-terms-conditions__section a:hover {
  text-decoration: underline;
  color: #FFD700; /* Secondary color on hover */
}

.page-terms-conditions__cta {
  text-align: center;
  margin-top: 25px;
}

.page-terms-conditions__button {
  display: inline-block;
  background-color: #FFD700; /* Secondary color */
  color: #004D99; /* Primary color for text on secondary button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-terms-conditions__button:hover {
  background-color: #e6c200; /* Darker secondary color on hover */
  color: #003366; /* Darker primary color on hover */
}

.page-terms-conditions__button--primary {
  background-color: #004D99; /* Primary color */
  color: #FFD700; /* Secondary color for text on primary button */
  border: 2px solid #004D99;
}

.page-terms-conditions__button--primary:hover {
  background-color: #003366; /* Darker primary color on hover */
  color: #FFD700;
  border-color: #003366;
}

.page-terms-conditions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__final-cta {
  text-align: center;
  padding: 30px 0;
  background-color: #eef7ff; /* Light blue background */
  border-radius: 8px;
  margin-top: 30px;
}

.page-terms-conditions__final-cta p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #004D99;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2em;
  }

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

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

  .page-terms-conditions__section {
    padding: 20px;
  }
}

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

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

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