/* privacy-styles.css */

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-section {
    margin-bottom: 60px;
    line-height: 1.8;
}

.legal-section h2 {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.02em !important;
    color: #1d1d1f;
}

.legal-section p {
    font-size: 1.05rem;
    color: #424245;
    margin-bottom: 16px;
}

.legal-section strong {
    font-weight: 550;
    color: #1d1d1f;
}

.legal-section a {
    color: #1d1d1f;
    text-decoration: none;
    border-bottom: 1px solid rgba(29, 29, 31, 0.1);
    padding-bottom: 1px;
    transition: 0.3s ease;
}

.legal-section a:hover {
    border-bottom-color: #1d1d1f;
}

@media (max-width: 720px) {
    .legal-section {
        margin-bottom: 40px;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }
}