body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* --- Modern 3D Header --- */
header.site-header {
    background: linear-gradient(180deg, #e0ffe7 0%, #66BB6A 60%, #388E3C 100%);
    color: #fff;
    padding: 36px 16px 24px 16px; /* Slightly less padding */
    text-align: center;
    /* Remove border-radius */
    border-bottom: none;
    box-shadow: 0 8px 32px 0 rgba(56, 142, 60, 0.18), 0 1.5px 0 #388E3C inset;
    position: relative;
    z-index: 10;
}
header.site-header h1 {
    margin: 0;
    font-size: 2.1rem; /* Smaller */
    font-weight: 700;
    letter-spacing: 1.2px;
    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.05rem; /* Slightly smaller */
    color: #184d27;
    opacity: 0.92;
    text-shadow: 0 1px 4px rgba(27,94,32,0.08);
}

/* --- Modern 3D Nav --- */
nav.site-nav {
    background: linear-gradient(180deg, #ffe0b2 0%, #ff9800 80%, #e65100 100%);
    text-align: center;
    padding: 14px 0 10px 0; /* Slightly less padding */
    border-bottom: none;
    box-shadow: 0 8px 32px 0 rgba(255,152,0,0.18), 0 1.5px 0 #ff9800 inset;
    /* Remove border-radius */
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 9;
    margin-bottom: 32px;
}
nav.site-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    font-size: 1.05rem; /* Slightly smaller */
    border-radius: 0.5rem; /* Slight rounding */
    background: transparent; /* Blend with nav */
    padding: 10px 22px;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    position: relative;
    top: 0;
    display: inline-block;
}
nav.site-nav a:hover,
nav.site-nav a.active {
    background: #ffb74d; /* Lighter orange */
    color: #fff;         /* Keep text white */
    box-shadow: 0 4px 16px rgba(255,183,77,0.18);
    border-radius: 0.5rem;
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}

/* Hamburger button styles */
.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;
}

/* Show hamburger on mobile, hide links by default */
@media (max-width: 767.98px) {
    .nav-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: linear-gradient(180deg, #ffe0b2 0%, #ff9800 80%, #e65100 100%);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 8px 32px 0 rgba(255,152,0,0.18);
        z-index: 19;
    }
    .nav-links.open {
        display: flex;
    }
    nav.site-nav {
        position: relative;
        flex-direction: row;
        align-items: center;
    }
}

/* --- The rest of your CSS remains unchanged --- */
.container {
    padding-top: 30px;
}
.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 {
    padding: 40px 20px;
    text-align: center;
}
.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.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;
    }
}