.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 {
  background: linear-gradient(135deg, #0A2463 0%, #0A2463 70%, #FFD700 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-terms-conditions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__hero-subtitle {
  font-size: 1.2em;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-terms-conditions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.page-terms-conditions__brand-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-terms-conditions__brand-link:hover {
  text-decoration: underline;
}

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

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

.page-terms-conditions__section-title {
  font-size: 2.2em;
  color: #0A2463;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

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

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

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

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

.page-terms-conditions__contact-link {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-terms-conditions__contact-link:hover {
  color: #FFD700;
}

.page-terms-conditions__cta {
  background-color: #0A2463;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.page-terms-conditions__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-terms-conditions__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-terms-conditions__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-terms-conditions__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-terms-conditions__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

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

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

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

  .page-terms-conditions__cta-title {
    font-size: 2em;
  }

  .page-terms-conditions__cta {
    padding: 50px 0;
  }
}

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

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

  .page-terms-conditions__section-title {
    font-size: 1.5em;
    padding-left: 10px;
  }

  .page-terms-conditions__section ul {
    margin-left: 15px;
  }

  .page-terms-conditions__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}