/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_green]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-terms-conditions__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-terms-conditions__subtitle {
  font-size: 1.3em;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

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

.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__heading {
  font-size: 2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #28a745;
  padding-bottom: 10px;
}

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

.page-terms-conditions__paragraph strong {
  color: #007bff;
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

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

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

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #e9f7ef; /* Light green from auxiliary color */
  border-radius: 8px;
  border: 1px solid #28a745;
}

.page-terms-conditions__cta-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #0056b3; /* Darker blue for contrast */
  font-weight: 500;
}

.page-terms-conditions__button {
  display: inline-block;
  background-color: #007bff;
  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.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

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

.page-terms-conditions__footer-note {
  padding: 30px 0;
  text-align: center;
  background-color: #343a40;
  color: #e9ecef;
  font-size: 0.9em;
}

.page-terms-conditions__copyright {
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2.5em;
  }

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

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

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

  .page-terms-conditions__paragraph,
  .page-terms-conditions__list {
    font-size: 1em;
  }

  .page-terms-conditions__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

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

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

  .page-terms-conditions__cta-wrapper {
    padding: 20px;
  }

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