*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    color:#222;
    background:#fff;
}

a{
    text-decoration:none;
}

img{
    display:block;
    width:100%;
}

.container{
    width:100%;
    max-width:1440px;
    margin:auto;
    padding:0 32px;
}

/* NAVBAR */

nav{
    border-bottom:1px solid #ececec;
    background:#fff;
}

.nav-content{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.hero{
    padding:30px 24px;
}

.hero iframe{
    display:block;
    width:100%;
    max-width:1440px;
    height:600px;
    margin:0 auto;
    border:0;
    border-radius:20px;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:52px;
    height:52px;
    border-radius:12px;
}

.logo h2{
    color: #0D5C63;
    font-family: "Kaushan Script", cursive;
    font-size:32px;
}

.logo a{
    color:#0D5C63;
}

.menu{
    display:flex;
    list-style:none;
    gap:50px;
}

.menu a{
    color:#222;
    font-size:18px;
    transition:.3s;
}

.menu a:hover{
    color:#0D5C63;
}

.contact-btn{
    background:#0D5C63;
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
}

/* HERO */

.hero iframe{
    display:block;
    margin:0 auto;
    width:100%;
    max-width:1440px;
    height:600px;
    border:0;
}

.hero h4{
    margin-top: 20px;
    text-align: center;
}

/* FOOTER */

footer{
    background:#081C24;
    color:#fff;
    padding:40px 0;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-links{
    display:flex;
    gap:20px;
}

.footer-links a{
    color:#fff;
    font-size:24px;
}
