/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: Arial, sans-serif;
  color: #fff;
  background-color: #1a002e; /* Darker background for content sections */
  line-height: 1.6;
}

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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #3A005B, #6a00a8); /* Primary color gradient */
  padding: 80px 0;
  text-align: center;
  color: #fff;
  border-bottom: 5px solid #FFD700; /* Secondary color accent */
}

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

.page-terms-conditions__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-terms-conditions__btn {
  display: inline-block;
  background-color: #FFD700; /* Secondary color for buttons */
  color: #3A005B; /* Primary color for button text */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__btn: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: #3A005B; /* Primary color for article background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__heading {
  font-size: 2em;
  color: #FFD700; /* Secondary color for section headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-terms-conditions__article p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

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

.page-terms-conditions__article ul 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.3);
}

.page-terms-conditions__cta-footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-terms-conditions__cta-footer p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-terms-conditions__btn--secondary {
  background-color: #3A005B; /* Primary color for secondary button */
  color: #FFD700; /* Secondary color for text */
  border: 2px solid #FFD700;
}

.page-terms-conditions__btn--secondary:hover {
  background-color: #2a0045;
  border-color: #e6c200;
}

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

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

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

@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__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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