/* --- TERMS & CONDITIONS PAGE --- */

.page-terms-conditions {
  min-height: 100vh;
}

/* --- CONTENT SECTION --- */

.section-terms {
  padding: 60px 24px;
}

.section-terms-inner {
  max-width: 900px;
  margin: 0 auto;
}

.terms-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.terms-section:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.terms-section h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
 
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-section h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  border-radius: 2px;
  flex-shrink: 0;
}

.terms-section p {
  margin-bottom: 16px;
 
  line-height: 1.7;
  font-size: 15px;
}

.terms-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.terms-section li {
  margin-bottom: 10px;
 
  line-height: 1.6;
  font-size: 15px;
  position: relative;
  padding-left: 8px;
}

.terms-section li::before {
  content: '•';
  position: absolute;
  left: -12px;
  color: #3b82f6;
  font-weight: bold;
}

/* --- CONTACT SECTION --- */

.terms-contact {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 48px;
  border-radius: 20px;
  margin-top: 40px;
  text-align: center;
}

.terms-contact h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;

}

.terms-contact p {
  margin-bottom: 24px;
 
  font-size: 16px;
}

.btn-accent {
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

/* --- ANIMATIONS --- */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.terms-section {
  animation: fadeInUp 0.6s ease both;
}

.terms-section:nth-child(1) { animation-delay: 0.1s; }
.terms-section:nth-child(2) { animation-delay: 0.2s; }
.terms-section:nth-child(3) { animation-delay: 0.3s; }
.terms-section:nth-child(4) { animation-delay: 0.4s; }
.terms-section:nth-child(5) { animation-delay: 0.5s; }
.terms-section:nth-child(6) { animation-delay: 0.6s; }
.terms-section:nth-child(7) { animation-delay: 0.7s; }
.terms-section:nth-child(8) { animation-delay: 0.8s; }

.terms-contact {
  animation: fadeInUp 0.6s ease both 0.9s;
}

/* --- RESPONSIVE --- */

@media (max-width: 1024px) {
  .hero-terms {
    padding: 80px 20px 60px;
  }

  .hero-terms-title {
    font-size: 42px;
  }

  .section-terms {
    padding: 40px 20px;
  }

  .terms-section {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .hero-terms {
    padding: 60px 16px 40px;
  }

  .hero-terms-title {
    font-size: 36px;
  }

  .hero-terms-subtitle {
    font-size: 16px;
  }

  .section-terms {
    padding: 32px 16px;
  }

  .terms-section {
    padding: 24px;
  }

  .terms-section h2 {
    font-size: 22px;
  }

  .terms-contact {
    padding: 32px;
  }

  .terms-contact h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-terms {
    padding: 48px 12px 32px;
  }

  .hero-terms-title {
    font-size: 28px;
  }

  .hero-terms-subtitle {
    font-size: 14px;
  }

  .btn-terms {
    padding: 14px 28px;
    font-size: 14px;
  }

  .section-terms {
    padding: 24px 12px;
  }

  .terms-section {
    padding: 20px;
  }

  .terms-section h2 {
    font-size: 20px;
  }

  .terms-contact {
    padding: 24px;
  }

  .terms-contact h3 {
    font-size: 22px;
  }

  .btn-accent {
    padding: 12px 24px;
    font-size: 14px;
  }
}
