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

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

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

.page-terms-conditions__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #1A1A1A; /* Dark text for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333; /* Slightly lighter dark text for subtitle */
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #1A1A1A; /* 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.2s 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: #222222; /* Slightly lighter dark background for article */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

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

.page-terms-conditions__article p {
  margin-bottom: 15px;
  font-size: 1em;
  color: #E0E0E0; /* Light grey text */
}

.page-terms-conditions__article strong {
  color: #FFD700;
}

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

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

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

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

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

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

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

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

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

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

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

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