/* style/terms-conditions.css */
.page-terms-conditions__hero {
  background: linear-gradient(135deg, #1A202C, #E53E3E);
  padding: 80px 20px;
  color: #FFFFFF;
  text-align: center;
}

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

.page-terms-conditions__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  opacity: 0.9;
  color: #f0f0f0;
}

.page-terms-conditions__content-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  color: #1A202C; /* Dark text for light background */
}

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

.page-terms-conditions__heading {
  font-size: 1.8em;
  color: #E53E3E; /* Accent color for headings */
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 2px solid #E53E3E;
  padding-bottom: 10px;
}

.page-terms-conditions__article p {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.page-terms-conditions__article strong {
  color: #1A202C;
}

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

.page-terms-conditions__list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.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.1);
}

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #fefefe;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__cta-text {
  font-size: 1.3em;
  color: #1A202C;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #E53E3E; /* Accent color for CTA */
  color: #FFFFFF;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(229, 62, 62, 0.4);
}

.page-terms-conditions__cta-button:hover {
  background-color: #c53030; /* Darker red on hover */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__heading {
    font-size: 1.5em;
  }
  .page-terms-conditions__article {
    padding: 25px;
  }
  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero {
    padding: 60px 15px;
  }
  .page-terms-conditions__title {
    font-size: 1.8em;
  }
  .page-terms-conditions__subtitle {
    font-size: 0.9em;
  }
  .page-terms-conditions__content-section {
    padding: 30px 15px;
  }
  .page-terms-conditions__article {
    padding: 20px;
  }
  .page-terms-conditions__heading {
    font-size: 1.3em;
  }
  .page-terms-conditions__article p {
    font-size: 0.95em;
  }
  .page-terms-conditions__list {
    margin-left: 20px;
  }
  .page-terms-conditions__cta-text {
    font-size: 1.1em;
  }
  .page-terms-conditions__cta-button {
    width: 100%;
    max-width: 280px;
  }
}