/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey text for dark background */
  background-color: #1a1a1a; /* Very dark grey/black background */
}

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

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

.page-terms-conditions__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #1a1a1a; /* Dark text for contrast */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-terms-conditions__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #333333; /* Slightly lighter dark text */
}

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

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

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

.page-terms-conditions__cta-button--large {
  padding: 20px 40px;
  font-size: 1.2em;
}

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

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

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

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

.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 li {
  margin-bottom: 10px;
}

.page-terms-conditions__link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
  color: #E6C200; /* Slightly darker gold on hover */
  text-decoration: underline;
}

.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.3);
  /* NO CSS FILTERS TO CHANGE IMAGE COLOR */
}

.page-terms-conditions__download-app {
  background-color: #8B0000; /* Secondary color for download section */
  padding: 50px 0;
  text-align: center;
  color: #FFFFFF; /* White text on dark red background */
}

.page-terms-conditions__download-app-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-terms-conditions__download-text h3 {
  color: #FFD700; /* Gold for download heading */
  font-size: 2.5em;
  margin-bottom: 15px;
}

.page-terms-conditions__download-text p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* 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__heading {
    font-size: 1.8em;
  }
  .page-terms-conditions__article {
    padding: 25px;
  }
  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-terms-conditions__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__title {
    font-size: 2em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__heading {
    font-size: 1.5em;
  }
  .page-terms-conditions__article {
    padding: 15px;
  }
  .page-terms-conditions__hero {
    padding: 60px 0;
  }
  .page-terms-conditions__content-section {
    padding: 40px 0;
  }
  .page-terms-conditions__download-text h3 {
    font-size: 2em;
  }
  .page-terms-conditions__download-text p {
    font-size: 1em;
  }
  .page-terms-conditions__cta-button {
    width: 100%;
    box-sizing: border-box;
  }
}