/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a0033; /* Darker background from main color #330066 */
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #330066, #5a00b3);
  padding: 80px 0;
  text-align: center;
  color: #FFD700;
  border-bottom: 3px solid #FFD700;
}

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

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

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  color: #e0e0e0;
}

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

.page-terms-conditions__article {
  background-color: #2b0055;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-terms-conditions__sub-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-terms-conditions__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-terms-conditions__link-text {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-terms-conditions__link-text:hover {
  color: #fff;
}

.page-terms-conditions__cta-section {
  text-align: center;
  padding: 60px 0;
  background-color: #330066;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__cta-section p {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-terms-conditions__btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 15px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-terms-conditions__btn--primary {
  background-color: #FFD700;
  color: #330066;
  border: 2px solid #FFD700;
}

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

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

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

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

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

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

  .page-terms-conditions__sub-heading {
    font-size: 1.3em;
  }

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

  .page-terms-conditions__btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
}

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

  .page-terms-conditions__article p,
  .page-terms-conditions__list li {
    font-size: 0.95em;
  }

  .page-terms-conditions__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
}