body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* --- Modern 3D Header --- */
header.site-header {
    background: linear-gradient(90deg, #e0ffe7 0%, #66BB6A 60%, #388E3C 100%);
    color: #184d27;
    padding: 32px 0 18px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(56, 142, 60, 0.10);
    border-bottom: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.site-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(56,142,60,0.10);
    background: #fff;
}

header.site-header h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #184d27;
    text-shadow: 0 2px 8px rgba(27,94,32,0.10), 0 1px 0 #fff;
}

header.site-header p {
    margin: 8px 0 0;
    font-size: 1.1rem;
    color: #184d27;
    opacity: 0.92;
    text-shadow: 0 1px 4px rgba(27,94,32,0.08);
}

.header-accent {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #66BB6A, #ff9800);
    border-radius: 2px;
    margin: 18px auto 0 auto;
}

/* --- Modern 3D Nav --- */
nav.site-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 24px 0 rgba(255,152,0,0.10);
    border-radius: 0 0 18px 18px;
    margin: 0 auto 32px auto;
    max-width: 900px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    gap: 1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav.site-nav a {
    color: #184d27;
    background: transparent;
    font-weight: 600;
    font-size: 1.08rem;
    border-radius: 0.5rem;
    padding: 10px 22px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    text-decoration: none;
    box-shadow: none;
    position: relative;
}

    nav.site-nav a:hover,
    nav.site-nav a.active {
        background: #ffb74d;
        color: #fff;
        box-shadow: 0 4px 16px rgba(255,183,77,0.18);
        transform: translateY(-2px) scale(1.04);
    }

/* Hamburger improvements */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 8px;
    z-index: 20;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: #e65100;
    position: relative;
    border-radius: 2px;
    transition: all 0.3s;
}

    .hamburger::before,
    .hamburger::after {
        content: '';
        display: block;
        width: 28px;
        height: 3px;
        background: #e65100;
        position: absolute;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        top: 8px;
    }

/* Responsive nav */
@media (max-width: 767.98px) {
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    nav.site-nav {
        flex-direction: row;
        border-radius: 0 0 12px 12px;
        max-width: 100vw;
        padding: 0.5rem 0.2rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        box-shadow: 0 8px 32px 0 rgba(255,152,0,0.18);
        z-index: 19;
        border-radius: 0 0 12px 12px;
        padding-bottom: 1rem;
    }

        .nav-links.open {
            display: flex;
        }

    nav.site-nav a {
        color: #184d27;
        background: transparent;
        width: 90%;
        margin: 0.2rem auto;
        text-align: center;
    }
}

/* --- The rest of your CSS remains unchanged --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1rem; /* Reduced from 2rem to 1rem */
}

.hero-image {
    max-width: 50%;
    height: auto;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
}

    .hero img {
        width: 100%;
        height: auto;
    }

    .hero h2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-shadow: 2px 2px 5px #000;
    }

.section {
    margin-bottom: 2.5rem;
    padding: 40px 20px;
    text-align: center;
}

    .section h2 {
        position: relative;
        display: inline-block;
        padding-bottom: 0.3em;
        margin-bottom: 1.2em;
    }

        .section h2::after {
            content: "";
            display: block;
            width: 60%;
            height: 4px;
            background: linear-gradient(90deg, #66BB6A, #ff9800);
            border-radius: 2px;
            margin: 0.5em auto 0;
        }

.services, .testimonials {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service, .testimonial {
    margin: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .service img, .testimonial img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
    }

footer {
    background-color: #66BB6A;
    color: white;
    text-align: center;
    padding: 20px;
    border-top: 5px solid #388E3C;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

/* Add a pop effect to service cards */
.service {
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

    .service:hover, .service:focus {
        box-shadow: 0 8px 24px rgba(120, 120, 120, 0.18), 0 1.5px 0 #757575 inset;
        transform: translateY(-4px) scale(1.03);
        background: #f5f5f5; /* Light gray */
        text-decoration: none;
    }

/* Responsive nav and service/testimonial cards */
@media (max-width: 767.98px) {
    nav.site-nav {
        flex-direction: column !important;
        gap: 0.5rem !important;
        padding: 10px 0 8px 0;
    }

        nav.site-nav a {
            display: block;
            margin: 6px 0;
            width: 90%;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

    .services, .testimonials {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    .service, .testimonial {
        max-width: 95vw;
        width: 100%;
    }

    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
}

.service {
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 6px 24px rgba(56,142,60,0.10);
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    border-radius: 16px;
    margin-bottom: 2rem;
}

    .service h3 {
        margin-top: 1rem;
        font-size: 1.3rem;
        color: #388E3C;
    }

    .service img {
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .service:hover, .service:focus {
        box-shadow: 0 12px 32px rgba(56,142,60,0.18);
        background: #f1f8e9;
        transform: translateY(-6px) scale(1.03);
    }

#contact.section {
    background: #f9fbe7;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(56,142,60,0.08);
    margin-top: 2rem;
    padding: 2.5rem 1.5rem;
}

#contact a.btn {
    margin-top: 1rem;
}
