* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #3b443e;
            /*--light-green: #3a5f38;*/
            --light-green: #6e7871;
            --tan: #d4b896;
            --brown: #8b6f47;
            --light-tan: #f2e6d3;
            --white: #ffffff;
            --gray: #666;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, var(--light-tan) 0%, var(--white) 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: var(--primary-green);
            color: var(--white);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            height: 100px;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--tan);
        }

        .logo-img {
            height: 100px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--tan);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(45, 74, 43, 0.7), rgba(45, 74, 43, 0.5)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="%23e8d5b7"/><stop offset="100%" stop-color="%23d4b896"/></linearGradient></defs><rect fill="url(%23skyGrad)" width="1200" height="600"/><path fill="%232d4a2b" d="M0 450c100-80 200-120 300-100s200 60 300 40s200-80 300-60s200 100 300 80V600H0V450z"/><path fill="%233a5f38" d="M0 480c120-60 240-100 360-80s240 80 360 60s240-60 360-40s120 40 120 40V600H0V480z"/><path fill="%238b6f47" opacity="0.6" d="M200 350l80-120 60 40 100-80 80 60 120-100 80 80V600H200V350z"/><path fill="%232d4a2b" opacity="0.8" d="M400 320l60-100 80 30 60-70 100 50 80-60V600H400V320z"/><path fill="%233a5f38" opacity="0.9" d="M600 280l100-140 60 60 80-80 120 40 140-60V600H600V280z"/></svg>');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .cta-button {
            background: var(--tan);
            color: var(--primary-green);
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
            animation: fadeInUp 1s ease-out 0.6s both;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            background: var(--brown);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: var(--light-tan);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--tan);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--tan);
            font-size: 1.5rem;
        }

        .service-card h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: linear-gradient(45deg, var(--light-tan), var(--white));
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            /*gap: 3rem;*/
            align-items: center;
        }

        .about-text h2 {
            color: var(--primary-green);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--gray);
        }

        .about-image {
            max-width: 75%;
            height: 400px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.2rem;
            text-align: center;
            background-size: cover;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: var(--primary-green);
            color: var(--white);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact h2 {
            color: var(--tan);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .contact-info {
            font-size: 1.1rem;
        }

        .contact-info p {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--tan);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 5px;
            font-family: inherit;
        }

        .submit-btn {
            background: var(--tan);
            color: var(--primary-green);
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--brown);
            color: var(--white);
        }

        /* Footer */
        footer {
            background: var(--brown);
            color: var(--white);
            text-align: center;
            padding: 2rem 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

        }


