.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #1A2035; /* Dark text for general content */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for readability */
}

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

.page-terms-conditions__hero {
  background-color: #1A2035; /* Primary brand color */
  color: #fff; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 32, 53, 0.9), rgba(255, 215, 0, 0.2)); /* Gradient overlay */
  z-index: 1;
}

.page-terms-conditions__hero .page-terms-conditions__container {
  position: relative;
  z-index: 2;
}

.page-terms-conditions__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  font-weight: bold;
}

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0; /* Slightly lighter white for subtitle */
}

.page-terms-conditions__hero-image {
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

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

.page-terms-conditions__heading {
  font-size: 2.2em;
  color: #1A2035;
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
  font-weight: 600;
}

.page-terms-conditions__sub-heading {
  font-size: 1.6em;
  color: #333;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-terms-conditions__paragraph {
  margin-bottom: 15px;
  color: #444;
}

.page-terms-conditions__paragraph strong {
  color: #1A2035;
}

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

.page-terms-conditions__list 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: #e6b800; /* 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 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__button,
.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2035; /* 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.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-terms-conditions__button:hover,
.page-terms-conditions__cta-button:hover {
  background-color: #e6b800; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-terms-conditions__cta {
  background-color: #1A2035; /* Dark background for CTA */
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
}

.page-terms-conditions__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #FFD700; /* Gold for emphasis */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2.5em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__heading {
    font-size: 1.8em;
  }
  .page-terms-conditions__sub-heading {
    font-size: 1.4em;
  }
  .page-terms-conditions__list {
    margin-left: 20px;
  }
  .page-terms-conditions__button,
  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-terms-conditions__cta-text {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__title {
    font-size: 2em;
  }
  .page-terms-conditions__hero {
    padding: 60px 0;
  }
  .page-terms-conditions__content {
    padding: 40px 0;
  }
  .page-terms-conditions__heading {
    font-size: 1.5em;
  }
  .page-terms-conditions__sub-heading {
    font-size: 1.2em;
  }
  .page-terms-conditions__list {
    margin-left: 15px;
  }
  .page-terms-conditions__button,
  .page-terms-conditions__cta-button {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}