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

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

.page-terms-conditions__hero-section {
  background: linear-gradient(135deg, #FFD700, #1A202C);
  padding: 80px 0;
  text-align: center;
  color: #1A202C; /* Dark text on light gradient background */
}

.page-terms-conditions__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #1A202C; /* Ensure high contrast */
}

.page-terms-conditions__hero-title .highlight {
  color: #1A202C;
}

.page-terms-conditions__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #333;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

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

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

.page-terms-conditions__article {
  background-color: #2a303c; /* Slightly lighter dark background for article */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold title */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-terms-conditions__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold sub-title */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions__article p {
  margin-bottom: 15px;
  color: #E0E0E0; /* Light gray text */
}

.page-terms-conditions__article strong {
  color: #FFD700; /* Highlight strong text in gold */
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0; /* Light gray list items */
}

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

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

.page-terms-conditions__cta-block {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px dashed #FFD700;
}

.page-terms-conditions__cta-block p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold text for CTA prompt */
}

.page-terms-conditions__cta-button--secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-terms-conditions__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__hero-title {
    font-size: 2.5em;
  }
  .page-terms-conditions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-terms-conditions__section-title {
    font-size: 2em;
  }
  .page-terms-conditions__sub-section-title {
    font-size: 1.5em;
  }
  .page-terms-conditions__article {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero-title {
    font-size: 2em;
  }
  .page-terms-conditions__hero-subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-terms-conditions__section-title {
    font-size: 1.8em;
  }
  .page-terms-conditions__sub-section-title {
    font-size: 1.3em;
  }
  .page-terms-conditions__article {
    padding: 15px;
  }
}