/* style/terms-conditions.css */

/* Base styles for the terms and conditions page */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

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

/* Hero Section */
.page-terms-conditions__hero-section {
  background: linear-gradient(135deg, #FFD700, #1E90FF);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.page-terms-conditions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-terms-conditions__hero-button {
  display: inline-block;
  background-color: #1E90FF; /* Auxiliary color for button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #1E90FF;
}

.page-terms-conditions__hero-button:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

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

.page-terms-conditions__section-title {
  font-size: 2.5em;
  color: #1E90FF;
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.page-terms-conditions__paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-terms-conditions__term-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.page-terms-conditions__term-heading {
  font-size: 1.8em;
  color: #333333;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-terms-conditions__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #555555;
}

.page-terms-conditions__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

/* Contact Button */
.page-terms-conditions__contact-button {
  display: inline-block;
  background-color: #FFD700; /* Main color for button */
  color: #333333;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-terms-conditions__contact-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Call to Action Section */
.page-terms-conditions__cta-section {
  background-color: #f8f8f8;
  text-align: center;
  padding: 60px 20px;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__cta-title {
  font-size: 2.2em;
  color: #1E90FF;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-terms-conditions__cta-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Main color for button */
  color: #333333;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-terms-conditions__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-terms-conditions__cta-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

/* Related Links */
.page-terms-conditions__related-links {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
  text-align: center;
}

.page-terms-conditions__related-title {
  font-size: 1.8em;
  color: #333333;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-terms-conditions__links-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-terms-conditions__links-list li {
  margin-bottom: 10px;
}

.page-terms-conditions__link {
  color: #1E90FF;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-terms-conditions__hero-title {
    font-size: 2.8em;
  }

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

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

  .page-terms-conditions__term-heading {
    font-size: 1.6em;
  }

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

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

@media (max-width: 768px) {
  .page-terms-conditions__hero-section {
    padding: 60px 0;
  }

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

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

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

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

  .page-terms-conditions__term-item {
    padding: 20px;
  }

  .page-terms-conditions__term-heading {
    font-size: 1.4em;
  }

  .page-terms-conditions__cta-section {
    padding: 40px 15px;
  }

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

  .page-terms-conditions__cta-button {
    padding: 15px 25px;
    font-size: 1.1em;
  }

  .page-terms-conditions__links-list {
    flex-direction: column;
    gap: 10px;
  }
}

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

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

  .page-terms-conditions__hero-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-terms-conditions__term-item {
    padding: 15px;
  }

  .page-terms-conditions__term-heading {
    font-size: 1.2em;
  }

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

  .page-terms-conditions__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}