.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.privacy-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

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

/* Ajustes para el logo en la página de privacidad */
.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo a:hover {
    opacity: 0.9;
} 