:root {
  --page-terms-conditions-primary-color: #1A237E;
  --page-terms-conditions-secondary-color: #FFD700;
  --page-terms-conditions-text-dark: #333;
  --page-terms-conditions-text-light: #fff;
  --page-terms-conditions-background-light: #f8f8f8;
  --page-terms-conditions-background-dark: #2c3e50;
  --page-terms-conditions-border-color: #ddd;
}

.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-terms-conditions-text-dark);
  background-color: var(--page-terms-conditions-background-light);
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, var(--page-terms-conditions-primary-color) 0%, #3f51b5 100%); /* Slightly lighter blue for gradient */
  color: var(--page-terms-conditions-text-light);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-content {
  max-width: 800px;
  margin-bottom: 30px;
  z-index: 1;
}

.page-terms-conditions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-terms-conditions-secondary-color); /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__hero-description {
  font-size: 1.2em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.page-terms-conditions__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.1;
  z-index: 0;
  width: 300px;
  height: 300px;
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

.page-terms-conditions__section-title {
  font-size: 2.2em;
  color: var(--page-terms-conditions-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--page-terms-conditions-secondary-color);
  padding-bottom: 10px;
}

.page-terms-conditions__sub-section-title {
  font-size: 1.6em;
  color: var(--page-terms-conditions-primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05em;
}

.page-terms-conditions__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

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

.page-terms-conditions__cta-wrapper {
  background-color: var(--page-terms-conditions-primary-color);
  color: var(--page-terms-conditions-text-light);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: var(--page-terms-conditions-secondary-color);
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: var(--page-terms-conditions-secondary-color);
  color: var(--page-terms-conditions-primary-color);
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-terms-conditions__hero {
    padding: 60px 15px;
  }

  .page-terms-conditions__hero-title {
    font-size: 2.5em;
  }

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

  .page-terms-conditions__section-title {
    font-size: 1.8em;
    margin-top: 30px;
  }

  .page-terms-conditions__sub-section-title {
    font-size: 1.4em;
    margin-top: 25px;
  }

  .page-terms-conditions p,
  .page-terms-conditions__list li {
    font-size: 0.95em;
  }

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

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

  .page-terms-conditions__hero-image-wrapper {
    width: 200px;
    height: 200px;
    bottom: -30px;
    right: -30px;
  }
}

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

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

  .page-terms-conditions__sub-section-title {
    font-size: 1.2em;
  }

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

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