/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #F5F5DC; /* Light beige for text */
  background-color: #0A2239; /* Dark blue-black background */
  line-height: 1.6;
}

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

.page-terms-conditions a:hover {
  text-decoration: underline;
}

.page-terms-conditions .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #0A2239, #1a3a5a);
  color: #F5F5DC;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-terms-conditions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

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

.page-terms-conditions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-terms-conditions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.page-terms-conditions__article {
  background-color: #1a3a5a; /* Slightly lighter dark blue for article background */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-terms-conditions__article p {
  margin-bottom: 15px;
  color: #F5F5DC; /* Light beige for paragraph text */
}

.page-terms-conditions__article ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #F5F5DC; /* Light beige for list items */
}

.page-terms-conditions__article li {
  margin-bottom: 8px;
}

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

.page-terms-conditions__call-to-action {
  background: linear-gradient(90deg, #0A2239, #FFD700);
  padding: 60px 0;
  text-align: center;
  color: #0A2239; /* Dark text on gradient background */
}

.page-terms-conditions__call-to-action .page-terms-conditions__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #0A2239; /* Dark blue for CTA title */
}

.page-terms-conditions__call-to-action .page-terms-conditions__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #0A2239; /* Dark blue for CTA description */
}

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

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

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

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

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

  .page-terms-conditions__call-to-action .page-terms-conditions__cta-title {
    font-size: 2em;
  }

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

@media (max-width: 480px) {
  .page-terms-conditions__hero {
    padding: 60px 0;
  }

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

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

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

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

  .page-terms-conditions__call-to-action .page-terms-conditions__cta-title {
    font-size: 1.8em;
  }

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