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

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

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

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

.page-terms-conditions__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto;
  color: #F0F0F0;
}

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

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

.page-terms-conditions__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-terms-conditions__section-title:first-of-type {
  margin-top: 0;
}

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

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

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

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

.page-terms-conditions__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-terms-conditions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700; /* Gold border */
}

.page-terms-conditions__image-caption {
  color: #CCCCCC;
  font-size: 0.9em;
  margin-top: 10px;
}

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary gold */
  color: #1a1a1a; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-terms-conditions__cta-button--secondary {
  background-color: #8B0000; /* Auxiliary red */
  color: #FFFFFF; /* White text on red */
}

.page-terms-conditions__cta-button--secondary:hover {
  background-color: #6a0000; /* Slightly darker red on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__hero-title {
    font-size: 2.5em;
  }
  .page-terms-conditions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-terms-conditions__section-title {
    font-size: 1.8em;
  }
  .page-terms-conditions__article {
    padding: 20px;
  }
  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero-title {
    font-size: 2em;
  }
  .page-terms-conditions__hero-subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__section-title {
    font-size: 1.5em;
  }
  .page-terms-conditions__cta-wrapper {
    flex-direction: column;
  }
  .page-terms-conditions__cta-button {
    width: 100%;
    max-width: 300px;
  }
}