body{
    margin:0;
    font-family:Arial, sans-serif;
    background:linear-gradient(135deg,#e0f7f4,#f5f5f5);
}

/* HEADER */
.header{
    background:#0f766e;
    color:white;
    padding:20px;
    text-align:center;
}

.header a{
    color:white;
    text-decoration:none;
    margin:0 10px;
}

/* SECTIONS */
.section{
    padding:70px 20px;
    text-align:center;
}

/* CONTAINER */
.container{
    max-width:1000px;
    margin:30px auto;
    background:white;
    padding:30px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

/* BUTTON */
.button{
    display:inline
    /* HEADER LAYOUT */
.header{
    background:#0f766e;
    color:white;
    width:100%;
}

.header-inner{
    max-width:1100px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
}

.logo{
    margin:0;
}

.nav a{
    color:white;
    margin:0 10px;
    text-decoration:none;
    font-weight:600;
}

/* FOOTER LAYOUT */
.footer{
    background:#0f766e;
    color:white;
    width:100%;
}

.footer-inner{
    max-width:1100px;
    margin:auto;
    text-align:center;
    padding:30px 20px;
}

/* MOBILE HEADER */
@media(max-width:600px){

    .header-inner{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

}