*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Arial,Helvetica,sans-serif;

background:#f4f4f4;

color:#333;

line-height:1.7;

}

header{

background:#FDD835;

padding:80px 20px;

text-align:center;

}

header h1{

font-size:42px;

margin-bottom:10px;

}

header p{

font-size:22px;

margin-bottom:30px;

}

.boton{

display:inline-block;

background:#0033A0;

color:white;

padding:15px 35px;

border-radius:8px;

text-decoration:none;

font-weight:bold;

}

.boton:hover{

background:#002777;

}

.contenedor{

width:90%;

max-width:1100px;

margin:auto;

}

section{

padding:70px 0;

}

h2{

font-size:34px;

margin-bottom:25px;

color:#0033A0;

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:25px;

margin-top:30px;

}

.card{

background:white;

padding:30px;

border-radius:10px;

box-shadow:0 10px 20px rgba(0,0,0,.08);

transition:.3s;

}

.card:hover{

transform:translateY(-8px);

}

.card h3{

color:#0033A0;

margin-bottom:15px;

}

.beneficios ul{

margin-top:20px;

}

.beneficios li{

margin-bottom:15px;

font-size:18px;

}

#contacto{

background:white;

text-align:center;

}

footer{

background:#222;

color:white;

padding:30px;

text-align:center;

font-size:14px;

}

nav{
    margin-bottom:40px;
}

.menu{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.menu li a{
    text-decoration:none;
    color:#0033A0;
    font-weight:bold;
    font-size:18px;
    transition:.3s;
}

.menu li a:hover{
    color:#000;
}

.boton-secundario{
    background:#ffffff;
    color:#0033A0;
    border:2px solid #0033A0;
    margin-left:15px;
}

.boton-secundario:hover{
    background:#0033A0;
    color:#fff;
}