*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    position:sticky;
    top:0;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px;
}

.logo{
    height:70px;
}

nav ul{
    display:flex;
    gap:20px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:#0A45A8;
    font-weight:bold;
}

.hero{
    background:linear-gradient(135deg,#0A45A8,#39A845);
    color:white;
    text-align:center;
    padding:120px 20px;
}

.hero h1{
    font-size:3rem;
}

.hero p{
    margin:20px 0;
    font-size:1.2rem;
}

.btn{
    background:white;
    color:#0A45A8;
    padding:12px 25px;
    text-decoration:none;
    border-radius:30px;
}

section{
    padding:80px 20px;
}

h2{
    text-align:center;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

form{
    max-width:600px;
    margin:auto;
}

form input,
form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
}

button{
    background:#0A45A8;
    color:white;
    border:none;
    padding:15px 25px;
    cursor:pointer;
}

footer{
    background:#0A45A8;
    color:white;
    text-align:center;
    padding:20px;
}
#nosotros p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}
