/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray for readability on dark background */
  background-color: #1a1a1a; /* Dark background */
}

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

.page-terms-conditions__hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3); /* Blue gradient */
  padding: 80px 0 60px;
  color: #ffffff;
  text-align: center;
  border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-terms-conditions__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

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

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

.page-terms-conditions__section-title {
  font-size: 2.2em;
  color: #007BFF; /* Primary blue for main titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

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

.page-terms-conditions p {
  margin-bottom: 1em;
  font-size: 1.05em;
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 1em;
}

.page-terms-conditions__list li {
  margin-bottom: 0.5em;
}

.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.3);
}

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background-color: #3a3a3a; /* Darker background for CTA */
  border-radius: 10px;
  border: 1px dashed #007BFF;
}

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

.page-terms-conditions__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #007BFF; /* Primary blue button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.page-terms-conditions__cta-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}

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

  .page-terms-conditions__hero-subtitle,
  .page-terms-conditions p,
  .page-terms-conditions__list li,
  .page-terms-conditions__cta-text {
    font-size: 1em;
  }

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

  .page-terms-conditions__sub-section-title {
    font-size: 1.4em;
  }

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

  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

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

  .page-terms-conditions__hero-subtitle {
    font-size: 0.9em;
  }

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

  .page-terms-conditions__sub-section-title {
    font-size: 1.2em;
  }

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

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

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