/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header and Navigation */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-link {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2e7d32;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #1b5e20;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2e7d32;
}

/* Main content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 0;
    flex-wrap: wrap;
}

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

.hero-title {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #2e7d32;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
}

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

.hero-img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.about-img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-title {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.about-description {
    color: #666;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
}

.services-title {
    text-align: center;
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-name {
    font-size: 1.3rem;
    color: #2e7d32;
    padding: 1rem 1.5rem 0.5rem;
}

.service-description {
    color: #666;
    padding: 0 1.5rem 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #fff;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.contact-text {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-email {
    margin-bottom: 2rem;
}

.email-link {
    color: #2e7d32;
    font-weight: bold;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #1b5e20;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.form-label {
    font-weight: 500;
    color: #555;
}

.form-input {
    width: 100%;
    max-width: 400px;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2e7d32;
}

.form-button {
    background-color: #2e7d32;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.form-button:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background-color: #2e7d32;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.footer-text {
    margin-bottom: 0.5rem;
}

.footer-contact {
    font-size: 0.9rem;
}

.footer-email {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #c8e6c9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
    }

    .about-title,
    .services-title,
    .contact-title {
        font-size: 1.5rem;
    }
}

/* Additional styles for the updated about image */
.about-img {
    content: url('https://images.pexels.com/photos/574071/pexels-photo-574071.jpeg?auto=compress&cs=tinysrgb&w=800');
    /* The image is already set in the HTML, but this ensures it's used */
}