/* style/terms-conditions.css */

/* General Styling for the Terms & Conditions Page */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Hero Section */
.page-terms-conditions__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px solid #ffc107;
}

.page-terms-conditions__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Content Section */
.page-terms-conditions__content-section {
  padding: 60px 0;
}

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

.page-terms-conditions__article {
  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: #007bff;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
}

.page-terms-conditions__article p {
  margin-bottom: 15px;
  font-size: 1.05em;
  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: 1em;
}

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

.page-terms-conditions__image--full-width {
  width: 100%;
}

.page-terms-conditions__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-terms-conditions__link:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Buttons */
.page-terms-conditions__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  text-align: center;
}

.page-terms-conditions__button--primary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

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

.page-terms-conditions__button--secondary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

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

/* Call to action block */
.page-terms-conditions__cta-block {
  background-color: #f0f8ff;
  border-left: 5px solid #007bff;
  padding: 30px;
  margin-top: 50px;
  border-radius: 5px;
  text-align: center;
}

.page-terms-conditions__cta-block p {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 20px;
}

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

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

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

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

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

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

  .page-terms-conditions__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

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

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

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

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

  .page-terms-conditions__list {
    margin-left: 15px;
  }
}