*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background-color:#f4f6f9;
    color:#333;
}


.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    background:#0d1b2a;
    color:white;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:22px;
    font-weight:bold;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#00b4d8;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}


.box{
    display:flex;
    align-items:center;
    gap:30px;
    background:white;
    margin:40px auto;
    padding:40px;
    width:85%;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.box:hover{
    transform:translateY(-5px);
}

.box img{
    width:250px;
    border-radius:10px;
    object-fit:cover;
}

.contenido{
    flex:1;
}

.contenido h2{
    margin-bottom:15px;
    color:#0d1b2a;
}

.contenido p{
    line-height:1.6;
}


footer{
    background:#0d1b2a;
    color:white;
    text-align:center;
    padding:30px 20px;
    margin-top:50px;
}

.social-icons{
    margin-bottom:15px;
}

.social-icons a{
    color:white;
    font-size:22px;
    margin:0 12px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#00b4d8;
}


@media(max-width:900px){

    .box{
        flex-direction:column;
        text-align:center;
    }

    .box img{
        width:100%;
        max-width:300px;
    }

}

@media(max-width:768px){

    .nav-links{
        position:absolute;
        top:70px;
        right:0;
        background:#0d1b2a;
        flex-direction:column;
        width:220px;
        padding:20px;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

}