/* Contenedor principal para el aviso de privacidad */
.Privacidad {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.7;
    text-align: justify;
}

/* Estilo para el título principal */
.Privacidad h1 {
    font-size: 3rem;
    color: #D26A00;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    font-family: 'Georgia', serif;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Estilo para las secciones de contenido */
.Privacidad section.content {
    padding: 25px;
}

/* Estilo para los subtítulos */
.Privacidad section h2 {
    font-size: 2rem;
    color: #D26A00;
    margin-bottom: 15px;
    border-bottom: 3px solid #D26A00;
    padding-bottom: 5px;
    margin-top: 30px;
    font-family: 'Georgia', serif;
    font-weight: bold;
}

/* Estilo para los párrafos */
.Privacidad section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
    color: #555;
}

/* Estilo para las listas */
.Privacidad section ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.Privacidad section ul li {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #555;
}

/* Estilos para los enlaces */
.Privacidad a {
    color: #D26A00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.Privacidad a:hover {
    color: #A84A00;
    text-decoration: underline;
}


/* Añadir un efecto de sombra suave al contenido */
.Privacidad section h2,
.Privacidad section p,
.Privacidad section ul {
    transition: all 0.3s ease-in-out;
}

.Privacidad section h2:hover,
.Privacidad section p:hover,
.Privacidad section ul li:hover {
    color: #D26A00;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Estilo de botones (si los necesitas en el aviso de privacidad) */
.Privacidad .btn {
    background-color: #D26A00;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    text-decoration: none;
}

.Privacidad .btn:hover {
    background-color: #A84A00;
}

/* Alineación del contenido */
.Privacidad .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}