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

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

.page-terms-conditions__hero {
  background-color: #1A2E47; /* Primary dark blue */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-terms-conditions__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Accent gold */
}

.page-terms-conditions__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
}

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

.page-terms-conditions__article {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__section-title {
  font-size: 2em;
  color: #1A2E47; /* Primary dark blue */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700; /* Accent gold underline */
  padding-bottom: 10px;
}

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

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

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

.page-terms-conditions__article a {
  color: #FFD700; /* Accent gold for links */
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-terms-conditions__button {
  display: inline-block;
  background-color: #FFD700; /* Accent gold */
  color: #1A2E47; /* Dark blue text on gold button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #0d1e34; /* Slightly darker blue on hover */
}

.page-terms-conditions__button--primary {
  background-color: #FFD700;
  color: #1A2E47;
}

.page-terms-conditions__button--primary:hover {
  background-color: #e6c200;
}

.page-terms-conditions__cta-block {
  background-color: #1A2E47; /* Primary dark blue */
  color: #ffffff;
  text-align: center;
  padding: 50px 30px;
  border-radius: 8px;
  margin-top: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__cta-block h3 {
  font-size: 2.2em;
  color: #FFD700; /* Accent gold */
  margin-bottom: 20px;
}

.page-terms-conditions__cta-block p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2.2em;
  }

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

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

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

  .page-terms-conditions__cta-block h3 {
    font-size: 1.8em;
  }

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

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

  .page-terms-conditions__title {
    font-size: 1.8em;
  }

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

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

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

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

  .page-terms-conditions__cta-block {
    padding: 40px 20px;
  }

  .page-terms-conditions__cta-block h3 {
    font-size: 1.6em;
  }
}