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

.page-terms-conditions__container {
  max-width: 1000px;
  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 bright hero background */
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.page-terms-conditions__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1A1A1A;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.page-terms-conditions__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #333;
  position: relative;
  z-index: 2;
}

.page-terms-conditions__hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

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

.page-terms-conditions__intro-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #CCCCCC;
  text-align: justify;
}

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

.page-terms-conditions__sub-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-terms-conditions ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

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

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

.page-terms-conditions a:hover {
  color: #FFEB3B; /* Lighter gold on hover */
  text-decoration: underline;
}

.page-terms-conditions__image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__image--left {
  float: left;
  margin-right: 30px;
}

.page-terms-conditions__image--right {
  float: right;
  margin-left: 30px;
}

.page-terms-conditions__cta-section {
  clear: both;
  text-align: center;
  padding: 50px 0;
  background-color: #2A2A2A;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFD700;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text */
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta-button:hover {
  background-color: #FFEB3B; /* Lighter gold on hover */
  color: #6A0000; /* Darker red text on hover */
  transform: translateY(-2px);
  text-decoration: none;
}

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

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

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

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

  .page-terms-conditions__image--left,
  .page-terms-conditions__image--right {
    float: none;
    margin: 20px auto;
    display: block;
  }
}

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

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

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