/* style/terms-conditions.css */

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

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

.page-terms-conditions__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.page-terms-conditions__subtitle {
  font-size: 1.4em;
  font-weight: 300;
  opacity: 0.9;
  color: #e6f2ff; /* Lighter shade of primary blue for contrast */
}

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

.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__article p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #343a40;
}

.page-terms-conditions__heading {
  font-size: 2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 10px;
}

.page-terms-conditions__article h2 + p {
    margin-top: 20px;
}

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

.page-terms-conditions__article ul li {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #495057;
}

.page-terms-conditions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.page-terms-conditions__cta-wrapper p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #495057;
}

.page-terms-conditions__btn {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-terms-conditions__btn--primary {
  background-color: #28a745;
}

.page-terms-conditions__btn--primary:hover {
  background-color: #1e7e34;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2.5em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1.2em;
  }
  .page-terms-conditions__article {
    padding: 25px;
  }
  .page-terms-conditions__heading {
    font-size: 1.7em;
  }
  .page-terms-conditions__article p,
  .page-terms-conditions__article ul li {
    font-size: 1em;
  }
  .page-terms-conditions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__title {
    font-size: 2em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__article {
    padding: 15px;
  }
  .page-terms-conditions__heading {
    font-size: 1.5em;
  }
  .page-terms-conditions__btn {
    width: 100%;
    max-width: 280px;
    padding: 10px 20px;
  }
}