﻿/* privacy.css */

/* Contenedor principal */
.container {
    max-width: 800px; /* Limita ancho de lectura */
    background: #ffffff; /* Fondo blanco */
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Títulos principales */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3557; /* Color de tu tema principal */
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1b8f4c; /* Color secundario */
    margin-top: 2rem;
}

/* Párrafos */
p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
    margin-top: 1rem;
}

/* Espaciado entre secciones */
.mt-4 {
    margin-top: 1.5rem !important;
}

/* Links (por si agregas alguno) */
a {
    color: #1b8f4c;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.25rem;
    }
}
