/* General Accessibility and Typography */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 18px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* Colors */
:root {
    --white: #ffffff;
    --light-green: #e8f5e9;
    --dark-green: #388e3c;
    --text-color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--white);
    border-bottom: 1px solid #ddd;
}

.navbar .logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-green);
    text-decoration: none;
}

.navbar .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    margin-left: 20px;
}

.navbar .contact-info a {
    color: var(--dark-green);
    font-weight: 700;
    text-decoration: none;
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none; /* Hide on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-green);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    background-color: var(--light-green);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}

.phone-link {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-green);
    text-decoration: none;
    margin-bottom: 15px;
}

.cta-button {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2e7d32;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section.light-green {
    background-color: var(--light-green);
}

.service-list {
    list-style-type: none;
    padding-left: 0;
}

.service-list li {
    background-color: var(--white);
    padding: 15px;
    margin-bottom: 10px;
    border-left: 5px solid var(--dark-green);
    border-radius: 5px;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: center;
}

.prop-item {
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1em;
}

.testimonial-card .author {
    text-align: right;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

.footer a {
    color: var(--white);
    text-decoration: underline;
}

.footer .copyright {
    margin-top: 10px;
}


/* --- Mobile Responsiveness with Media Queries --- */

/* For smaller devices like mobile phones */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Slightly smaller base font for mobile */
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .navbar .logo {
        margin: 0;
    }

    .navbar .nav-links {
        display: none; /* Hide navigation links by default */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 65px; /* Position below the header */
        left: 0;
        background-color: var(--white);
        border-top: 1px solid #ddd;
    }
    
    .navbar .nav-links.active {
        display: flex; /* Show menu when active */
    }

    .navbar .nav-links a {
        display: block;
        text-align: center;
        padding: 15px;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .navbar .contact-info {
        display: flex; /* Hide phone number from top bar on mobile */
    }
    
    .hamburger-menu {
        display: flex; /* Show hamburger menu on mobile */
    }

    .hero {
        flex-direction: column; /* Stack hero content vertically */
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content {
        order: 1; /* Move text content above the image */
    }

    .hero-image {
        order: 2; /* Move image to the bottom */
        margin-bottom: 30px;
    }

    .contact-cta {
        align-items: center; /* Center the CTA buttons */
    }
    
    .phone-link {
        font-size: 24px; /* Adjust font size */
    }
    
    .content-section {
        padding: 40px 0; /* Adjust section padding */
    }

    .value-props {
        grid-template-columns: 1fr; /* Stack value props */
    }
}

