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

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

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

.page-terms-conditions__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

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

.page-terms-conditions__hero-image {
  max-width: 80%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

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

.page-terms-conditions__heading {
  font-size: 2.2em;
  color: #0A2342;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #F0A500;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-terms-conditions__sub-heading {
  font-size: 1.6em;
  color: #0A2342;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333;
}

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

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

.page-terms-conditions__link:hover {
  text-decoration: underline;
  color: #d18d00; /* Darker shade for hover */
}

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

.page-terms-conditions__cta-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #0A2342;
  border-radius: 8px;
  margin-top: 60px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-text {
  font-size: 1.8em;
  color: #fff;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-terms-conditions__button {
  display: inline-block;
  background-color: #F0A500;
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__button:hover {
  background-color: #d18d00; /* Darker orange for hover */
  transform: translateY(-3px);
}

.page-terms-conditions__button--secondary {
  background-color: #54657b; /* A lighter shade of the main color */
  color: #fff;
}

.page-terms-conditions__button--secondary:hover {
  background-color: #6c7b8e;
  transform: translateY(-3px);
}

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

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

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

  .page-terms-conditions__sub-heading {
    font-size: 1.4em;
  }

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

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

  .page-terms-conditions__button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

  .page-terms-conditions__hero-image {
    max-width: 90%;
  }

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

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

  .page-terms-conditions__list {
    margin-left: 15px;
  }

  .page-terms-conditions__cta-section {
    padding: 30px 15px;
  }

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

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