/**
 * Legal & Policy Pages Stylings
 * Drop Cars – Premium intercity taxi
 */

.legal-page {
  padding: var(--section-y-lg, 2.5rem) 0 3.5rem;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05) 0%, transparent 400px);
}

.legal-hero {
  max-width: 800px;
  margin-bottom: 2.25rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.legal-hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: #1e293b;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.legal-hero p {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 500;
}

.legal-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  margin-bottom: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.legal-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.25rem;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.legal-section li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #475569;
}

.legal-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

.legal-footer-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .legal-page {
    padding: 2rem 0 2.5rem;
  }
  
  .legal-hero {
    margin-bottom: 1.75rem;
  }
}

.policy-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
