/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[IMAGE:terms_hero_banner]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-terms-conditions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.page-terms-conditions__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__subtitle {
  font-size: 1.3em;
  opacity: 0.9;
  color: #e0e0e0;
}

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

.page-terms-conditions__heading {
  font-size: 2.2em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #FFCC00;
  padding-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.page-terms-conditions__heading::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8px;
  height: 100%;
  background-color: #FFCC00;
}

.page-terms-conditions__sub-heading {
  font-size: 1.8em;
  color: #004d99;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 5px solid #003366;
}

.page-terms-conditions__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-terms-conditions__text strong {
  color: #003366;
}

.page-terms-conditions__list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  padding: 0;
}

.page-terms-conditions__list--bullet {
  list-style-type: disc;
}

.page-terms-conditions__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444;
}

.page-terms-conditions__link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-terms-conditions__link:hover {
  color: #FFCC00;
  text-decoration: none;
}

.page-terms-conditions__cta-buttons {
  margin-top: 50px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-terms-conditions__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-terms-conditions__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-terms-conditions__button--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  color: #002244;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__button--secondary {
  background-color: #003366;
  color: #fff;
  border: 2px solid #003366;
}

.page-terms-conditions__button--secondary:hover {
  background-color: #002244;
  border-color: #002244;
  color: #FFCC00;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__button--tertiary {
  background-color: #f0f0f0;
  color: #003366;
  border: 2px solid #ccc;
}

.page-terms-conditions__button--tertiary:hover {
  background-color: #e0e0e0;
  border-color: #bbb;
  color: #002244;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__image-wrapper {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  width: 300px;
  border: 1px solid #ddd;
  padding: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.page-terms-conditions__image-wrapper--right {
  float: left;
  margin-right: 30px;
  margin-left: 0;
}

.page-terms-conditions__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-terms-conditions__title {
    font-size: 2.8em;
  }
  .page-terms-conditions__heading {
    font-size: 1.8em;
  }
  .page-terms-conditions__sub-heading {
    font-size: 1.5em;
  }
  .page-terms-conditions__image-wrapper {
    float: none;
    margin: 20px auto;
    width: 80%;
  }
  .page-terms-conditions__image-wrapper--right {
    float: none;
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions__hero {
    padding: 60px 15px;
  }
  .page-terms-conditions__title {
    font-size: 2.2em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1.1em;
  }
  .page-terms-conditions__content-section {
    padding: 40px 0;
  }
  .page-terms-conditions__heading {
    font-size: 1.6em;
    padding-left: 10px;
  }
  .page-terms-conditions__heading::before {
    width: 5px;
  }
  .page-terms-conditions__sub-heading {
    font-size: 1.3em;
    padding-left: 8px;
  }
  .page-terms-conditions__text,
  .page-terms-conditions__list-item {
    font-size: 1em;
  }
  .page-terms-conditions__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-terms-conditions__button {
    width: 90%;
    max-width: 300px;
  }
  .page-terms-conditions__image-wrapper {
    width: 95%;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__title {
    font-size: 1.8em;
  }
  .page-terms-conditions__subtitle {
    font-size: 0.95em;
  }
  .page-terms-conditions__heading {
    font-size: 1.4em;
  }
  .page-terms-conditions__sub-heading {
    font-size: 1.1em;
  }
  .page-terms-conditions__list {
    margin-left: 20px;
  }
}