*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bg:#1a1a1a;
    --surface:#2c2c2c;
    --card:#3a3a3a;
    --text:#ffffff;
    --muted:#bdbdbd;
    --accent:#00D329;
    --accent-hover:#00b322;
}

body{
    font-family:Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    background:var(--surface);
    padding:15px 24px;

    border-bottom:1px solid #3d3d3d;
}

.navitems{
    display:flex;
    gap:24px;
}

.navitems a{
    color:white;
    text-decoration:none;
    position:relative;
    transition:0.2s ease;
}

.navitems a:hover{
    color:var(--accent);
}

.navitems .active{
    color:var(--accent);
}

.navitems .active::after{
    content:"";
    position:absolute;

    left:0;
    bottom:-6px;

    width:100%;
    height:2px;

    background:var(--accent);
}

.search-wrapper{
    position:relative;
    width:250px;
}

.search-wrapper input{
    width:100%;
    padding:10px 12px 10px 42px;

    background:#444;
    border:none;
    border-radius:8px;

    color:white;
    outline:none;
}

.search-wrapper .icon{
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    width:18px;
    height:18px;
}

.search-wrapper svg{
    fill:#bdbdbd;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:320px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:60px 20px;

    background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
    linear-gradient(135deg,#00D329,#006d15);
}

.hero-content{
    max-width:700px;
}

.hero-content h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero-content p{
    color:#e5e5e5;
    line-height:1.7;
    margin-bottom:30px;
    font-size:18px;
}

.hero-btn{
    display:inline-block;

    background:white;
    color:#111;

    padding:14px 26px;
    border-radius:10px;

    text-decoration:none;
    font-weight:bold;

    transition:0.2s ease;
}

.hero-btn:hover{
    background:#e5e5e5;
}

/* =========================
   ABOUT CONTENT
========================= */

.about-container{
    max-width:1100px;
    margin:auto;
    padding:60px 20px;

    display:flex;
    flex-direction:column;
    gap:30px;
}

.about-card{
    background:var(--surface);
    border-radius:16px;
    padding:30px;

    border:1px solid #3b3b3b;
}

.about-card h2{
    margin-bottom:20px;
    font-size:30px;
}

.about-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:18px;
}

.about-card ul{
    padding-left:20px;
    color:var(--muted);
    line-height:2;
}

/* =========================
   INFO GRID
========================= */

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.info-card{
    background:var(--card);
    padding:24px;
    border-radius:16px;

    transition:0.2s ease;
}

.info-card:hover{
    transform:translateY(-4px);
    border-color:var(--accent);
}

.info-card h3{
    margin-bottom:14px;
    color:var(--accent);
}

.info-card p{
    color:var(--muted);
    line-height:1.7;
}

/* =========================
   FOOTER
========================= */

footer{
    text-align:center;
    padding:30px 20px;

    border-top:1px solid #333;
    color:#9d9d9d;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .navbar{
        flex-wrap:wrap;
    }

    .search-wrapper{
        width:100%;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }
}

@media(max-width:500px){

    .navitems{
        gap:16px;
        flex-wrap:wrap;
    }

    .hero{
        min-height:260px;
    }

    .hero-content h1{
        font-size:30px;
    }

    .about-card{
        padding:22px;
    }
}