body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.hero {
    padding: 80px 20px;
    background: #f4f6f3;
}

.logo-img {
    width: 180px;
    margin: 20px 0;
}

.section {
    padding: 60px 20px;
}

.light {
    background: #f9faf8;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    padding: 20px;
    border: 1px solid #eaeaea;
    background: white;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: #6b8e7a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.quote {
    background: #eef3ef;
    font-style: italic;
}

.center {
    text-align: center;
}

.mt {
    margin-top: 30px;
}
s
/* HEADER */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
}

.logo img {
    width: 40px;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* MOBILE MENU */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background: white;
        width: 200px;
        display: none;
        flex-direction: column;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 15px;
    }

    .nav-links a {
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

