*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Montserrat',sans-serif;
}

body{
background:#f5f5f5;
}

/* HEADER */

.header{
background: #0d2a45;
padding:20px;
}

.header-container{
display:flex;
align-items:center;
gap:15px;
max-width:1000px;
margin:auto;
color:#edebe7;
}

.logo{
width:70px;
}

.header-text h1{
font-family:'Cinzel',serif;
}

.header-text p{
color:#fff;
}

/* CONTENIDO */

.contenido{
max-width:800px;
margin:40px auto;
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.contenido h2{
font-family:'Cinzel',serif;
color:#1e1e1e;
margin-bottom:20px;
border-bottom:2px solid #d4af37;
padding-bottom:10px;
}

.contenido h3{
margin-top:25px;
color:#1e1e1e;
}

.contenido p{
margin-top:15px;
line-height:1.7;
}

.contenido ul{
margin-top:15px;
padding-left:20px;
}

.contenido li{
margin-bottom:8px;
}

/* BOTON */

.btn{
display:inline-block;
margin-top:30px;
background:#133e6f;
color:#000;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#000;
color:#eaeaea;
}

/* FOOTER */

.footer{
text-align:center;
padding:20px;
background:#1e1e1e;
color:#f3f2ef;
margin-top:40px;
}
