/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
  padding-bottom: 50px;
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #8B0000, #4d0000); /* Darker red gradient */
  padding: 80px 20px;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-terms-conditions__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #FFD700;
}

.page-terms-conditions__hero-subtitle {
  font-size: 1.5em;
  font-weight: normal;
  color: #f0f0f0;
}

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

.page-terms-conditions__introduction {
  padding: 60px 0;
  background-color: #222222;
  border-bottom: 1px solid #333;
}

.page-terms-conditions__introduction p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
  text-align: center;
}

.page-terms-conditions__intro-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-terms-conditions__article h2 {
  font-size: 2.2em;
  color: #FFD700; /* Gold for main headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-terms-conditions__article h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.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 {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.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; /* Gold button */
  color: #1a1a1a; /* Dark text for gold button */
  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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px;
}

.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; /* Burgundy button */
  color: #FFD700; /* Gold text for burgundy button */
  border: 2px solid #FFD700;
}

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

/* Responsive Design */
@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__article h2 {
    font-size: 1.8em;
  }

  .page-terms-conditions__article h3 {
    font-size: 1.5em;
  }

  .page-terms-conditions__introduction,
  .page-terms-conditions__content {
    padding: 40px 0;
  }

  .page-terms-conditions__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

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

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

  .page-terms-conditions__article h2 {
    font-size: 1.5em;
  }

  .page-terms-conditions__article h3 {
    font-size: 1.3em;
  }

  .page-terms-conditions__cta-wrapper {
    flex-direction: column;
  }
}