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

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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #1A2E47 0%, #3a5b82 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-terms-conditions__hero-content {
  z-index: 1;
  position: relative;
}

.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-subtitle {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto;
  color: #C0C0C0;
}

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

.page-terms-conditions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(50%);
  transform: scale(1.05);
}

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

.page-terms-conditions__article {
  background-color: #283E5B; /* Slightly lighter dark blue for article background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-terms-conditions__article ul,
.page-terms-conditions__article ol {
  margin-bottom: 15px;
  padding-left: 25px;
  color: #E0E0E0;
}

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

.page-terms-conditions__link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
}

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

.page-terms-conditions__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-terms-conditions__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E47; /* Dark blue text on gold */
}

.page-terms-conditions__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-terms-conditions__button--secondary {
  background-color: #1A2E47; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-terms-conditions__button--secondary:hover {
  background-color: #0d1e34;
  transform: translateY(-2px);
}

.page-terms-conditions__button--large {
  font-size: 1.2em;
  padding: 15px 30px;
}

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-terms-conditions__final-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #1A2E47;
  border-radius: 8px;
  border: 1px solid #FFD700;
}

.page-terms-conditions__final-cta-text {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

.page-terms-conditions__image--right {
  float: right;
  margin-left: 30px;
  max-width: 40%;
}

.page-terms-conditions__image--left {
  float: left;
  margin-right: 30px;
  max-width: 40%;
}

/* Clearfix for floated images */
.page-terms-conditions__article::after {
  content: "";
  display: table;
  clear: both;
}

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

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

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

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

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

  .page-terms-conditions__final-cta-text {
    font-size: 1.1em;
  }

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

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

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

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