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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #1A202C, #3A404C);
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Auxiliary gold for titles */
  border-bottom: 2px solid #FFD700;
}

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

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

.page-terms-conditions__subtitle {
  font-size: 1.3em;
  color: #e5dfd3;
}

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

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

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

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

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

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

.page-terms-conditions__article a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-terms-conditions__article a:hover {
  color: #b39700; /* Darker gold on hover */
  text-decoration: underline;
}

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

.page-terms-conditions__cta-button:hover {
  background-color: #b39700; /* Darker gold on hover */
  color: #FFFFFF; /* White text on hover for better contrast */
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2.5em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1.1em;
  }
  .page-terms-conditions__article {
    padding: 25px;
  }
  .page-terms-conditions__section-heading {
    font-size: 1.8em;
  }
  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__title {
    font-size: 2em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__article {
    padding: 15px;
  }
  .page-terms-conditions__section-heading {
    font-size: 1.5em;
  }
  .page-terms-conditions__cta-button {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.9em;
  }
}