.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for readability */
  background-color: #f8f9fa; /* Light background */
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #0A2463, #3B5998); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-image {
  max-width: 200px;
  margin-top: 30px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-terms-conditions__title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-terms-conditions__section {
  padding: 60px 0;
  border-bottom: 1px solid #e9ecef;
}

.page-terms-conditions__section:last-of-type {
  border-bottom: none;
}

.page-terms-conditions__section--alt-bg {
  background-color: #ffffff;
}

.page-terms-conditions__section-title {
  font-size: 2em;
  color: #0A2463; /* Deep blue for section titles */
  margin-bottom: 25px;
  text-align: left;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
}

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

.page-terms-conditions ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444444;
}

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

.page-terms-conditions__section--cta {
  text-align: center;
  background: #0A2463; /* Deep blue background for CTA */
  color: #ffffff;
  padding: 70px 0;
}

.page-terms-conditions__section--cta .page-terms-conditions__section-title {
  color: #FFD700; /* Gold for CTA title */
  border-left: none;
  padding-left: 0;
  text-align: center;
  margin-bottom: 20px;
}

.page-terms-conditions__section--cta p {
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-terms-conditions__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-terms-conditions__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-terms-conditions__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Deep blue text */
  border: 2px solid #FFD700;
}

.page-terms-conditions__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-terms-conditions__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

  .page-terms-conditions__subtitle,
  .page-terms-conditions p,
  .page-terms-conditions ul li {
    font-size: 1em;
  }

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

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

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

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

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

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

  .page-terms-conditions__button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-terms-conditions__hero-image {
    max-width: 150px;
  }
}