    body {
        margin: 0;
        font-family: Inter, Arial, sans-serif;
        background: #fdfdfd;
        color: #222
    }

    section {
        padding: 80px 0;
        opacity: 0;
        transform: translateY(40px)
    }

    .container {
        width: min(1100px, 90%);
        margin: auto
    }

    h1,
    h2,
    h3 {
        margin: 0 0 1rem
    }

    .primary-color {
        color: #0F7C5A
    }

    .secondary-color {
        color: #DED787
    }

    .grey-color {
        color: #C8C8C8
    }

    nav {
        position: sticky;
        top: 0;
        background: #fff;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
        z-index: 10
    }

    nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative
    }

    nav ul {
        display: flex;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0
    }

    nav a {
        text-decoration: none;
        color: #0F7C5A;
        font-weight: 600
    }

    nav a:hover {
        color: #0c5d45
    }

    .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: #0F7C5A;
        border-radius: 2px;
        transition: .3s
    }

    @media(max-width:800px) {
        nav ul {
            display: none;
            flex-direction: column;
            gap: 1rem;
            background: #fff;
            position: absolute;
            top: 70px;
            right: 0;
            width: 200px;
            padding: 1.2rem;
            border: 1px solid #eee;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
        }

        nav ul.open {
            display: flex
        }

        .menu-toggle {
            display: flex
        }
    }

    .hero {
        text-align: center;
        padding: 80px 0 80px;
        background: linear-gradient(135deg, #0F7C5A, #0c6b4d);
        color: white;
        opacity: 1;
        transform: none
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: .8rem
    }

    .hero p {
        font-size: 1.2rem;
        color: #f5f5f5
    }

    .section-title {
        text-align: center;
        margin-bottom: 2rem
    }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem
    }

    .card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
        padding: 1.5rem;
        transition: .3s transform
    }

    .card:hover {
        transform: translateY(-5px)
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem
    }

    .team-member {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
        padding: 1.5rem;
        text-align: center
    }

    .team-member img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 1rem
    }

    .team-member h3 {
        color: #0F7C5A;
        margin-bottom: .3rem
    }

    .team-member p {
        color: #666;
        font-size: .95rem;
        line-height: 1.4
    }

    .email {
        display: inline-block;
        margin-top: .6rem;
        color: #0F7C5A;
        font-weight: 600;
        text-decoration: none
    }

    .email:hover {
        color: #0c5d45
    }

    .partners-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: center;
        align-items: center;
        margin-top: 2rem
    }

    .partners-grid img {
        height: 60px;
        filter: grayscale(100%);
        opacity: .7;
        transition: .3s
    }

    .partners-grid img:hover {
        filter: none;
        opacity: 1;
        transform: scale(1.05)
    }

    footer {
        padding: 40px 0;
        text-align: center;
        background: #0F7C5A;
        color: white;
        margin-top: 80px
    }

    footer a {
        color: #DED787;
        text-decoration: none;
        margin: 0 .5rem
    }

    footer a:hover {
        text-decoration: underline
    }