/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #001f3f; /* Dark blue main background */
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #001f3f 0%, #0a3a66 100%); /* Dark blue gradient */
  padding: 80px 20px;
  text-align: center;
  color: #ffcc00; /* Golden yellow for hero text */
  border-bottom: 2px solid #ffcc00;
}

.page-terms-conditions__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #ffcc00; /* Golden yellow */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff; /* White for subtitle */
}

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

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

.page-terms-conditions__heading {
  font-size: 2.2em;
  color: #ffcc00; /* Golden yellow for main headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 204, 0, 0.3);
  padding-bottom: 10px;
}

.page-terms-conditions__sub-heading {
  font-size: 1.6em;
  color: #ffffff; /* White for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  color: #e0e0e0; /* Light gray for paragraphs */
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0; /* Light gray for list items */
}

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

.page-terms-conditions__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-terms-conditions__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #ffcc00; /* Golden yellow */
  color: #001f3f; /* Dark blue */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-button:hover {
  background-color: #e6b800; /* Slightly darker yellow on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

  .page-terms-conditions__hero {
    padding: 60px 15px;
  }

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

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

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

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

  .page-terms-conditions__hero {
    padding: 40px 10px;
  }

  .page-terms-conditions__list {
    margin-left: 20px;
  }
}