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

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

.page-terms-conditions__hero-section {
  background-color: #2D3E50; /* Primary color */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #F39C12; /* Accent color for emphasis */
}

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

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

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

.page-terms-conditions__section-title {
  font-size: 2.2em;
  color: #2D3E50; /* Primary color */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #F39C12; /* Accent color */
  padding-bottom: 10px;
}

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

.page-terms-conditions__article ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-terms-conditions__article li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #555;
}

.page-terms-conditions__link-button {
  display: inline-block;
  background-color: #F39C12; /* Accent color */
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.page-terms-conditions__link-button:hover {
  background-color: #e08e0b;
}

.page-terms-conditions__cta-section {
  background-color: #2D3E50; /* Primary color */
  color: #ffffff;
  text-align: center;
  padding: 50px 20px;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta-text {
  font-size: 1.8em;
  margin-bottom: 30px;
  font-weight: 300;
  color: #ffffff;
}

.page-terms-conditions__main-cta-button,
.page-terms-conditions__secondary-cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 10px;
  transition: all 0.3s ease;
}

.page-terms-conditions__main-cta-button {
  background-color: #F39C12; /* Accent color */
  color: #ffffff;
  border: 2px solid #F39C12;
}

.page-terms-conditions__main-cta-button:hover {
  background-color: #e08e0b;
  border-color: #e08e0b;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__secondary-cta-button {
  background-color: transparent;
  color: #F39C12; /* Accent color */
  border: 2px solid #F39C12;
}

.page-terms-conditions__secondary-cta-button:hover {
  background-color: #F39C12;
  color: #2D3E50; /* Primary color */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

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

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

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

  .page-terms-conditions__article p,
  .page-terms-conditions__article li {
    font-size: 1em;
  }

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

  .page-terms-conditions__main-cta-button,
  .page-terms-conditions__secondary-cta-button {
    display: block;
    width: 80%;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero-title {
    font-size: 2em;
  }

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

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

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

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