*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f2f3d8;
    color:#222;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ================= NAVBAR ================= */

header{
    width:100%;
    background:#aabeaf;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:90px;
}

.logo{
    display:flex;
    align-items:center;
}

.logo-link{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    width:70px;
}

.logo-text h2{
    font-size:32px;
    line-height:1;
    color:#111;
    font-weight:700;
}

.logo-text span{
    color:#f58220;
}

.logo-text p{
    font-size:12px;
    letter-spacing:3px;
    color:#666;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:#008c7a;
}

.login-btn{
    background:#00695c;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:500;
}

.login-btn:hover{
    background:#004d40;
}

/* ================= PAGE CONTENT ================= */

.content{
    padding:70px 0;
}

.content h1{
    font-size:48px;
    margin-bottom:25px;
    color:#00695c;
}

.content h2{
    margin-top:30px;
    margin-bottom:15px;
    color:#00695c;
}

.content p,
.content li{
    margin-bottom:15px;
    color:#444;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

/* ================= FOOTER ================= */

footer{
    background:#003b36;
    color:#fff;
    padding:60px 0 20px;
    margin-top:60px;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:20px;
    color:#ccc;
}

/* ================= RESPONSIVE ================= */

/* ================= HAMBURGER ================= */

.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#00695c;
    border-radius:5px;
}

/* ================= MOBILE NAV ================= */

/* ================= HAMBURGER ================= */

.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#00695c;
    border-radius:5px;
}

/* ================= MOBILE NAV ================= */

@media(max-width:1000px){

    .menu-toggle{
        display:flex;
    }

    nav{
        position:absolute;
        top:90px;
        right:20px;
        width:280px;
        background:#ffffff;
        box-shadow:0 10px 30px rgba(0,0,0,0.12);
        border-radius:18px;
        padding:25px;
        display:none;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        gap:20px;
    }

}