/* style/terms-conditions.css */

.page-terms-conditions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for body text on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  border-bottom: 2px solid #FFD700;
}

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

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.page-terms-conditions__heading {
  font-size: 2.2em;
  color: #FFD700; /* Gold */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-terms-conditions__sub-heading {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0; /* Light gray */
}

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

.page-terms-conditions__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-terms-conditions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__image--left {
  float: left;
  margin-right: 20px;
  width: 300px;
}

.page-terms-conditions__image--right {
  float: right;
  margin-left: 20px;
  width: 300px;
}

.page-terms-conditions__call-to-action {
  clear: both;
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-terms-conditions__button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue text on gold button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-terms-conditions__button--secondary {
  background-color: #0A192F; /* Dark blue */
  color: #FFD700; /* Gold text on dark blue button */
  border: 1px solid #FFD700;
}

.page-terms-conditions__button--secondary:hover {
  background-color: #1a3a60; /* Slightly lighter dark blue */
  border-color: #e6c200;
}

/* Responsive adjustments */
@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__paragraph,
  .page-terms-conditions__list li {
    font-size: 1em;
  }

  .page-terms-conditions__image--left,
  .page-terms-conditions__image--right {
    float: none;
    margin: 20px auto;
    width: 80%;
    display: block;
  }
}

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

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

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

  .page-terms-conditions__button {
    padding: 10px 20px;
    font-size: 1em;
  }
}