.legal-container {
    max-width: 800px;
    margin: 60px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-size: 14px;
    line-height: 1.6;
}

.legal-container h1 {
    margin-bottom: 20px;
}

.legal-container h3 {
    margin-top: 20px;
}


/* ===================================
   LEGAL PAGE - PROFESIONAL
=================================== */

body{
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background:#f8fafc;
    color:#1e293b;
}

.legal-container{
    max-width:900px;
    margin:80px auto;
    padding:50px 60px;
    background:white;
    border-radius:16px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    line-height:1.7;
}

/* ===== TITULO ===== */

.legal-container h1{
    font-size:28px;
    margin-bottom:25px;
    font-weight:600;
    color:#0f172a;
    border-bottom:2px solid #2563eb;
    padding-bottom:10px;
}

/* ===== PÁRRAFOS ===== */

.legal-container p{
    margin-bottom:18px;
    font-size:15px;
    color:#334155;
}

/* ===== LISTA ===== */

.legal-container ul{
    margin:20px 0;
    padding-left:20px;
}

.legal-container li{
    margin-bottom:10px;
    font-size:15px;
    color:#334155;
    position:relative;
}

/* viñetas más elegantes */
.legal-container li::marker{
    color:#2563eb;
}

/* ===== FECHA FINAL ===== */

.legal-container p:last-child{
    margin-top:30px;
    font-size:13px;
    color:#64748b;
    font-style:italic;
    border-top:1px solid #e2e8f0;
    padding-top:15px;
}

/* ===== RESPONSIVE ===== */

@media (max-width:768px){

    .legal-container{
        margin:30px 20px;
        padding:30px 25px;
    }

    .legal-container h1{
        font-size:22px;
    }

}

/* BOTON ATRAZ VOLVER*/
/* CONTENEDOR DEL BOTÓN */
.legal-actions{
    margin-bottom:20px;
}

/* BOTÓN */
.btn-legal-back{
    display:inline-block;
    background:#1e3a8a;
    color:white;
    padding:8px 16px;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    border:none;
    cursor:pointer;
    transition:0.2s ease;
}

.btn-legal-back:hover{
    background:#2563eb;
}

/* Móvil */
@media(max-width:768px){
    .btn-legal-back{
        width:100%;
        text-align:center;
    }
}