/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0A1931; /* Main dark blue background */
}

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

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

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

.page-terms-conditions__subtitle {
  font-size: 1.3em;
  color: #C0C0C0; /* Lighter gray for subtitle */
  margin-bottom: 30px;
}

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

.page-terms-conditions__content-section {
  padding: 60px 0;
  background-color: #0A1931;
}

.page-terms-conditions__article {
  background-color: #1a2e50; /* Slightly lighter dark blue for article background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__heading {
  font-size: 2.2em;
  color: #FFD700; /* Gold for main headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-terms-conditions__sub-heading {
  font-size: 1.6em;
  color: #FFD700; /* Gold for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions__article p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

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

.page-terms-conditions__link:hover {
  text-decoration: underline;
  color: #ffe680; /* Lighter gold on hover */
}

.page-terms-conditions__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #0A1931; /* Main dark blue for CTA background */
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  border: 1px solid #FFD700;
}

.page-terms-conditions__cta-text {
  font-size: 1.8em;
  color: #FFD700; /* Gold for CTA text */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #0A1931; /* Dark blue text on gold button */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  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: #ffe680; /* Lighter gold on hover */
  transform: translateY(-3px);
}

.page-terms-conditions__cta-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2.5em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1.1em;
  }
  .page-terms-conditions__heading {
    font-size: 1.8em;
  }
  .page-terms-conditions__sub-heading {
    font-size: 1.4em;
  }
  .page-terms-conditions__article {
    padding: 25px;
  }
  .page-terms-conditions__cta-text {
    font-size: 1.5em;
  }
  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__title {
    font-size: 2em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__heading {
    font-size: 1.5em;
  }
  .page-terms-conditions__sub-heading {
    font-size: 1.2em;
  }
  .page-terms-conditions__article {
    padding: 15px;
  }
  .page-terms-conditions__cta-text {
    font-size: 1.2em;
  }
  .page-terms-conditions__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-terms-conditions__hero-image,
  .page-terms-conditions__cta-image {
    max-width: 100%;
  }
}