/* style/terms-conditions.css */

/* Base styles for the page content */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1a1a1a; /* Very dark grey for main text for high contrast */
  background-color: #f8f9fa; /* Light background */
}

/* Hero Section */
.page-terms-conditions__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
}

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

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

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

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

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

.page-terms-conditions__section-title {
  font-size: 1.8em;
  color: #007bff; /* Primary blue for section titles */
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffc107; /* Secondary color for accent */
  padding-bottom: 10px;
}

.page-terms-conditions__article p {
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #333333; /* Dark grey for paragraph text */
}

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

.page-terms-conditions__list li {
  margin-bottom: 0.5em;
}

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

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

.page-terms-conditions__link-button {
  display: inline-block;
  background-color: #ffc107; /* Secondary color for button */
  color: #1a1a1a; /* Dark text on light button */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 15px;
}

.page-terms-conditions__link-button:hover {
  background-color: #e0a800; /* Darker secondary on hover */
  transform: translateY(-2px);
}

/* Image styles */
.page-terms-conditions__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

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

.page-terms-conditions__image-caption {
  font-style: italic;
  color: #666666;
  margin-top: 10px;
  font-size: 0.9em;
}

/* Call to Action (CTA) */
.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #e9f5ff; /* Lighter blue background for CTA */
  border-radius: 8px;
  border: 1px solid #007bff;
}

.page-terms-conditions__cta-text {
  font-size: 1.4em;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 20px;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #007bff; /* Primary blue for CTA button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-terms-conditions__cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-terms-conditions__hero-title {
    font-size: 2.2em;
  }
  .page-terms-conditions__hero-subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__section-title {
    font-size: 1.5em;
  }
  .page-terms-conditions__article {
    padding: 20px;
  }
  .page-terms-conditions__cta-text {
    font-size: 1.2em;
  }
  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero-title {
    font-size: 1.8em;
  }
  .page-terms-conditions__hero-section {
    padding: 60px 15px;
  }
  .page-terms-conditions__section-title {
    font-size: 1.3em;
  }
  .page-terms-conditions__article {
    padding: 15px;
  }
  .page-terms-conditions__cta-text {
    font-size: 1em;
  }
  .page-terms-conditions__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}