* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1d1d1f;
    background: #ffffff;
}


/* =========================
   HEADER
========================= */

.header {
    height: 76px;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
}

.nav a:hover {
    color: #087f23;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 520px;
    background: #f4f6f5;

    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 25px;
}

.hero-label {
    color: #087f23;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    max-width: 800px;
    margin: 0;

    font-size: 58px;
    line-height: 1.05;
    letter-spacing: -2px;
}

.hero p {
    max-width: 650px;
    margin-top: 25px;

    color: #666;
    font-size: 20px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.button {
    display: inline-block;
    padding: 15px 25px;

    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
}

.primary {
    background: #087f23;
    color: white;
}

.primary:hover {
    background: #06651c;
}

.secondary {
    background: white;
    color: #222;
    border: 1px solid #ccc;
}

.secondary:hover {
    border-color: #888;
}


/* =========================
   SERVICES
========================= */

.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 25px;
}

.services h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 40px;
}

.cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.card {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 30px;

    min-height: 260px;
}

.card-number {
    color: #087f23;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 30px;
}

.card h3 {
    font-size: 23px;
    margin-bottom: 15px;
}

.card p {
    color: #666;
    line-height: 1.6;
}

.card a {
    display: inline-block;
    margin-top: 15px;

    color: #087f23;
    text-decoration: none;
    font-weight: bold;
}


/* =========================
   FOOTER
========================= */

footer {
    border-top: 1px solid #e5e5e5;
    padding: 35px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;

    display: flex;
    justify-content: space-between;

    color: #666;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .nav {
        gap: 15px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        flex-direction: column;
        gap: 10px;
    }
}