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

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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  animation: page-terms-conditions-bubble1 15s infinite ease-in-out;
}

.page-terms-conditions__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  animation: page-terms-conditions-bubble2 12s infinite ease-in-out;
}

@keyframes page-terms-conditions-bubble1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(50px, 50px) scale(1.2); opacity: 0.9; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
}

@keyframes page-terms-conditions-bubble2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-40px, -40px) scale(1.1); opacity: 0.8; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
}

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

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-terms-conditions__btn {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

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

.page-terms-conditions__btn--secondary {
  background-color: #0056b3;
  color: #fff;
}

.page-terms-conditions__btn--secondary:hover {
  background-color: #003f8c;
  transform: translateY(-2px);
}

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

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

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

.page-terms-conditions__heading {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 25px;
  border-bottom: 3px solid #ffc107;
  padding-bottom: 10px;
  display: inline-block;
  position: relative;
}

.page-terms-conditions__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 50%;
  height: 3px;
  background-color: #007bff;
}

.page-terms-conditions__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-terms-conditions__list {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-terms-conditions__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444;
}

.page-terms-conditions__list li strong {
  color: #007bff;
}

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

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

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

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

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

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

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

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

  .page-terms-conditions__list {
    padding-left: 15px;
  }
}