.page-terms-conditions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A2463; /* Main dark background */
}

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

.page-terms-conditions__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3C7C 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-terms-conditions__hero-section > * {
  position: relative;
  z-index: 1;
}

.page-terms-conditions__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

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

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

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

.page-terms-conditions__article {
  background-color: #15387D; /* Slightly lighter blue for content background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-terms-conditions__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #0A2463;
  border-radius: 10px;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__cta-wrapper p {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-terms-conditions__btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text */
}

.page-terms-conditions__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-terms-conditions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@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__article {
    padding: 25px;
  }

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

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

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

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

  .page-terms-conditions__article {
    padding: 15px;
  }

  .page-terms-conditions__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}