/* 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, #0A2463, #3A5A9A);
  padding: 80px 20px;
  color: #FFFFFF;
  text-align: center;
}

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

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

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

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

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

.page-terms-conditions__heading {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
}

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

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

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

.page-terms-conditions__article a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

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

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px dashed #ccc;
}

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

.page-terms-conditions__button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
  border: 2px solid #FFD700;
}

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

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

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

.page-terms-conditions__image-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

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

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

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

  .page-terms-conditions__button {
    margin-bottom: 15px;
  }

  .page-terms-conditions__cta-wrapper a {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

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

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

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

  .page-terms-conditions__image-gallery {
    flex-direction: column;
    align-items: center;
  }

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