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

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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #0A2463, #3A5B9B);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-terms-conditions__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
}

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

.page-terms-conditions__content-section {
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.page-terms-conditions__article {
  flex: 3;
  min-width: 60%;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__section-heading {
  font-size: 2em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

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

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

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

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

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

.page-terms-conditions__link:hover {
  color: #FFD700;
}

.page-terms-conditions__image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.page-terms-conditions__cta-section {
  background-color: #FFD700;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
  color: #0A2463;
}

.page-terms-conditions__cta-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #0A2463;
}

.page-terms-conditions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-terms-conditions__btn--primary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #0A2463;
}

.page-terms-conditions__btn--primary:hover {
  background-color: #061A4A;
  color: #fff;
}

.page-terms-conditions__btn--secondary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-terms-conditions__btn--secondary:hover {
  background-color: #e6c200;
  color: #0A2463;
}

.page-terms-conditions__call-to-action {
  background-color: #0A2463;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-terms-conditions__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-terms-conditions__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #ccc;
}

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

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

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

  .page-terms-conditions__content-section {
    flex-direction: column;
    padding: 40px 0;
  }

  .page-terms-conditions__article,
  .page-terms-conditions__image-wrapper {
    min-width: 100%;
  }

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

  .page-terms-conditions__section-heading {
    font-size: 1.8em;
    margin-top: 30px;
  }

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

  .page-terms-conditions__btn {
    padding: 10px 20px;
  }

  .page-terms-conditions__call-to-action {
    padding: 40px 0;
  }

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

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

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

  .page-terms-conditions__btn {
    width: 100%;
    margin-bottom: 10px;
  }
}