.privacy-section h2 {
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-sans);
    letter-spacing: -0.01em;
}

.privacy-section h3 {
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.privacy-section p {
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.privacy-section ul {
    margin-bottom: 1.5rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
}

.privacy-section a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.privacy-section a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.25rem;
    }
}