/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Primary dark background */
  line-height: 1.6;
}

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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #0A192F, #1A3A5F);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-terms-conditions__title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-terms-conditions__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-terms-conditions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-terms-conditions__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-terms-conditions__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-terms-conditions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

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

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

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

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

.page-terms-conditions__article strong {
  color: #FFD700;
}

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

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

.page-terms-conditions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #0A192F; /* Dark blue background for CTA */
  border-radius: 10px;
  border: 1px solid #FFD700;
}

.page-terms-conditions__cta-bottom h3 {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-terms-conditions__cta-bottom p {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 30px;
}

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

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

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

  .page-terms-conditions__article {
    padding: 25px;
  }

  .page-terms-conditions__cta-group {
    flex-direction: column;
  }
}

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

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

  .page-terms-conditions__btn {
    width: 100%;
    padding: 12px 20px;
  }

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