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

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

.page-terms-conditions__hero {
  background-color: #0A203C; /* Main brand color */
  color: #ffffff; /* White text for contrast */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-content {
  z-index: 1;
}

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

.page-terms-conditions__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  line-height: 1.5;
  color: #e0e0e0;
}

.page-terms-conditions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.15; /* Subtle background image */
  z-index: 0;
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-terms-conditions__text-block p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333; /* Dark text on light background */
}

.page-terms-conditions__article {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__article-title {
  font-size: 2em;
  color: #0A203C; /* Main brand color for titles */
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700; /* Auxiliary color for accent */
  padding-bottom: 10px;
}

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

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

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

.page-terms-conditions__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__cta-wrapper {
  background-color: #0A203C; /* Main brand color */
  color: #ffffff; /* White text for contrast */
  padding: 50px 30px;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
}

.page-terms-conditions__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-terms-conditions__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-terms-conditions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-terms-conditions__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent; /* Default transparent border */
}

.page-terms-conditions__button--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #0A203C; /* Dark text for contrast */
  border-color: #FFD700;
}

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

.page-terms-conditions__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Auxiliary color for text */
  border-color: #FFD700; /* Auxiliary color for border */
}

.page-terms-conditions__button--secondary:hover {
  background-color: #FFD700; /* Auxiliary color on hover */
  color: #0A203C; /* Dark text on hover */
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-terms-conditions__hero {
    padding: 60px 15px;
  }

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

  .page-terms-conditions__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-terms-conditions__article-title {
    font-size: 1.7em;
  }

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

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

  .page-terms-conditions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-terms-conditions__button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

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

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

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

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