/* General */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #F4F6F7; /* Color de Fondo: Blanco Humo */
    color: #2C3E50; /* Color de Texto Secundario: Gris Oscuro */
}

/* Contenedor principal */
.privacy-policy {
    padding: 40px 20px;
    background-color: #ffffff; /* Mantener color blanco para contraste */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto;
    box-sizing: border-box;
}

.privacy-policy h1 {
    font-size: 2.4rem;
    color: #34495E; /* Color Secundario: Azul Medianoche */
    margin-bottom: 20px;
    text-align: center;
}

.privacy-policy .intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #2C3E50; /* Color de Texto Secundario: Gris Oscuro */
    line-height: 1.8;
}

.privacy-policy h2 {
    font-size: 1.6rem;
    color: #2ECC71; /* Color Primario: Verde Esmeralda */
    margin-bottom: 15px;
    border-left: 4px solid #2ECC71; /* Color Primario: Verde Esmeralda */
    padding-left: 10px;
}

.privacy-policy p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #2C3E50; /* Color de Texto Secundario: Gris Oscuro */
    line-height: 1.8;
}

.privacy-policy p:last-child {
    margin-bottom: 0;
}

.privacy-policy .last-updated {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #868e96; /* Mantener para legibilidad */
}

.privacy-policy .last-updated span {
    font-weight: bold;
    color: #2C3E50; /* Color de Texto Secundario: Gris Oscuro */
}

/* Botones y elementos interactivos */
button,
.privacy-policy a {
    color: #ffffff;
    background-color: #2ECC71; /* Color Primario: Verde Esmeralda */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

button:hover,
.privacy-policy a:hover {
    background-color: #27ae60; /* Un tono más oscuro para hover */
}

/* Destacados */
.privacy-policy .highlight {
    background-color: #F1C40F; /* Color de Resaltado: Amarillo Suave */
    padding: 5px 10px;
    border-radius: 5px;
    color: #2C3E50; /* Contraste legible */
    font-weight: bold;
}

/* Responsividad */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px;
    }

    .privacy-policy h1 {
        font-size: 2rem;
    }

    .privacy-policy h2 {
        font-size: 1.4rem;
    }

    .privacy-policy p {
        font-size: 0.95rem;
    }

    button,
    .privacy-policy a {
        font-size: 0.9rem;
    }
}
