/* --- Estilos para la página "Privacy Policy" --- */

.privacy-policy-main {
    padding: 40px 0;
}

.privacy-content-section {
    background-color: #fff;
    padding: 50px 60px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-content-section h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}

.privacy-content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.privacy-content-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .privacy-content-section {
        padding: 30px 25px;
    }
}