* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f7f9fc;
    color: #333;
}

/* Header */
.privacy-header {
    background-color: white;
    border-bottom: 2px solid #004687;
    padding: 30px 20px;
    text-align: center;
}

.privacy-header h1 {
    margin: 10px 0 0;
    color: #004687;
    font-size: 32px;
}

.back-link {
    text-decoration: none;
    color: #004687;
    font-size: 14px;
    font-weight: 500;
}

/* Contenedor principal */
.privacy-container {
    max-width: 900px;
    margin: 40px auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Secciones */
section {
    margin-bottom: 35px;
}

section h2 {
    color: #004687;
    font-size: 22px;
    margin-bottom: 15px;
    border-left: 4px solid #004687;
    padding-left: 12px;
}

section p {
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 15px;
}

section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Caja de contacto */
.contact-box {
    background-color: #f1f5fb;
    border-left: 4px solid #004687;
    padding: 20px;
    border-radius: 6px;
}

.contact-box h3 {
    margin-top: 0;
    color: #004687;
}

/* Consentimiento */
.consent {
    background-color: #f8fbff;
    padding: 25px;
    border-radius: 8px;
    font-size: 14px;
}

/* Footer */
.privacy-footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-container {
        padding: 25px 20px;
        margin: 20px;
    }

    .privacy-header h1 {
        font-size: 24px;
    }
}
