/* 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-section {
  background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

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

.page-terms-conditions__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

.page-terms-conditions__hero-subtitle {
  font-size: 1.3em;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

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

.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__heading {
  font-size: 2.2em;
  color: #0A2463; /* Primary dark blue */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-terms-conditions__sub-heading {
  font-size: 1.6em;
  color: #2A498B; /* Slightly lighter blue */
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

.page-terms-conditions__list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.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__btn {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary gold */
  color: #0A2463; /* Dark blue text for contrast */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 25px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-terms-conditions__btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  color: #0A2463;
}

.page-terms-conditions__btn--primary {
  background-color: #0A2463; /* Primary dark blue */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #0A2463;
}

.page-terms-conditions__btn--primary:hover {
  background-color: #1a3c7a; /* Darker blue on hover */
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__hero-title {
    font-size: 2.5em;
  }
  .page-terms-conditions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-terms-conditions__heading {
    font-size: 1.8em;
  }
  .page-terms-conditions__sub-heading {
    font-size: 1.4em;
  }
  .page-terms-conditions__article {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero-title {
    font-size: 2em;
  }
  .page-terms-conditions__hero-subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__heading {
    font-size: 1.5em;
  }
  .page-terms-conditions__sub-heading {
    font-size: 1.2em;
  }
  .page-terms-conditions__article {
    padding: 15px;
  }
  .page-terms-conditions__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}