/* public/css/legal.css */
.legal-hero {
    padding: 6rem max(4rem, calc((100% - 800px) / 2)) 3rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(211,29,29,0.05), transparent 70%);
    border-bottom: 1px solid var(--border-light);
}

.legal-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.legal-hero p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.legal-content {
    padding: 4rem max(4rem, calc((100% - 800px) / 2)) 6rem;
    color: var(--text-white);
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

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

.legal-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.legal-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #cccccc;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #cccccc;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .legal-hero, .legal-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .legal-hero h1 {
        font-size: 2.5rem;
    }
}
