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

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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #003366, #FFCC00);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-terms-conditions__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-terms-conditions__section {
  padding: 40px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

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

.page-terms-conditions__heading {
  color: #003366;
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 10px;
}

.page-terms-conditions__heading + h3 {
  margin-top: 20px;
  color: #004488;
  font-size: 1.5em;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  color: #555;
}

.page-terms-conditions ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

.page-terms-conditions li {
  margin-bottom: 8px;
}

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

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

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

.page-terms-conditions__button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__button:hover {
  background-color: #e6b800;
  color: #002244;
}

.page-terms-conditions__button--secondary {
  background-color: #003366;
  color: #fff;
  margin-left: 15px;
}

.page-terms-conditions__button--secondary:hover {
  background-color: #002244;
  color: #FFCC00;
}

.page-terms-conditions__call-to-action {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  text-align: center;
}

/* Responsive Design */
@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.8em;
  }

  .page-terms-conditions__content {
    padding: 15px;
  }
  .page-terms-conditions__button {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .page-terms-conditions__button--secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__title {
    font-size: 1.5em;
  }

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