.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,193,7,0.2) 0%, rgba(0,123,255,0) 70%);
  animation: page-terms-conditions__hero-glow 15s infinite alternate;
}

@keyframes page-terms-conditions__hero-glow {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 0.9; }
}

.page-terms-conditions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

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

.page-terms-conditions__title .highlight {
  color: #ffc107;
}

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

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

.page-terms-conditions__article {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-terms-conditions__heading {
  font-size: 2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #ffc107;
  padding-bottom: 10px;
  font-weight: 600;
}

.page-terms-conditions__heading:first-of-type {
  margin-top: 0;
}

.page-terms-conditions__article p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-terms-conditions__article strong {
  color: #0056b3;
}

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

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

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

.page-terms-conditions__cta-section {
  text-align: center;
  background-color: #007bff;
  color: #fff;
  padding: 50px 30px;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffc107;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-terms-conditions__cta-title strong {
  color: #fff;
}

.page-terms-conditions__cta-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.5;
}

.page-terms-conditions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-terms-conditions__btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-terms-conditions__btn--primary {
  background-color: #ffc107;
  color: #0056b3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__btn--secondary {
  background-color: #fff;
  color: #007bff;
  border: 2px solid #007bff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__btn--secondary:hover {
  background-color: #e6f2ff;
  color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

  .page-terms-conditions__article {
    padding: 25px;
  }

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

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

  .page-terms-conditions__cta-text {
    font-size: 1.1em;
  }

  .page-terms-conditions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-terms-conditions__btn {
    width: 80%;
    max-width: 300px;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero {
    padding: 60px 15px;
  }

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

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

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

  .page-terms-conditions__article {
    padding: 20px;
  }

  .page-terms-conditions__heading {
    font-size: 1.5em;
    margin-top: 30px;
  }

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

  .page-terms-conditions__cta-text {
    font-size: 1em;
  }

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