.legal-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,15 15,25 5,15" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-pattern)"/></svg>');
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.legal-content {
    padding: 100px 0;
    background: #f8fafc;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.legal-document h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-document ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-document li {
    color: #4a5568;
    margin-bottom: 8px;
}

.contact-details {
    background: #f7fafc;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 8px;
    color: #2d3748;
}

.contact-details strong {
    color: #1a202c;
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 2.5rem;
    }
    
    .legal-document {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .legal-document h2 {
        font-size: 1.3rem;
    }
}
