    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #005a00;
            --secondary-color: #2a837e;
            --accent-color: #2d8a47;
            --forest-green: #1a4d3a;
            --mountain-gray: #4a5d5a;
            --sage-green: #6b8e5a;
            --dark-color: #1e3a2a;
            --light-gray: #f5f8f6;
            --medium-gray: #556b5a;
            --text-color: #2d4a35;
            --warm-white: #fafcfb;
            --header-bg: #f5f8f6f2;
        }

        @font-face {
            font-family: 'neoteric';
            src: url('fonts/neoteric__-_regular_commercial_version-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'neoteric-bold';
            src: url('fonts/neoteric__-_bold_commercial_version-webfont.woff') format('woff');
            font-weight: bold;
            font-style: bold;
        }
        @font-face {
            font-family: 'neoteric-light';
            src: url('fonts/neoteric__-_light_commercial_version-webfont.woff') format('woff');
            font-weight: light;
            font-style: light;
        }
        @font-face {
            font-family: 'neoteric-thin';
            src: url('fonts/neoteric__-_thin_commercial_version-webfont.woff') format('woff');
            font-weight: thin;
            font-style: thin;
        }

        body {
            font-family: 'neoteric', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            scroll-behavior: smooth;
        }

        p {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            font-weight: bold;
            background: var(--header-bg);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px #1a4d3a26;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }

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

        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--secondary-color);
        }

        .cta-button {
            background: var(--primary-color);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        @media screen and (max-width: 600px) {
            .cta-button {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
                margin-left: 1rem;
            }
        }

        .cta-button:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-button {
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .hero-button.primary {
            background: white;
            color: var(--primary-color);
        }

        .hero-button.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .hero-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px #1a4d3a4d;
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
        }

        .section-alt {
            background: var(--light-gray);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--medium-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--medium-gray);
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .stat-label {
            color: var(--medium-gray);
            font-weight: 500;
        }

        .about-visual {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px #1a4d3a4d;
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 20px;
        }

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

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px #1a4d3a1a;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px #1a4d3a1a;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .service-card p {
            color: var(--medium-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            padding: 0.3rem 0;
            color: var(--medium-gray);
            position: relative;
            padding-left: 1.5rem;
        }

        .service-features li::before {
            content: '✓';
            color: var(--primary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Service Detail Sections */
        .service-detail {
            padding: 80px 0;
        }

        .service-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .service-visual {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .service-visual-content {
            position: relative;
            z-index: 2;
            margin: 2rem
        }

        .service-visual-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-visual h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .service-visual p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .service-content h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }

        .service-content p {
            font-size: 1.1rem;
            color: var(--medium-gray);
            margin-bottom: 1.5rem;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-card {
            padding: 1.5rem;
            border-radius: 12px;
            background: #0d7c661a;
        }

        .feature-card.alt1 { background: #0d7c6626; }
        .feature-card.alt2 { background: #1e6b5226; }
        .feature-card.alt3 { background: #2d8a4726; }
        .feature-card.alt4 { background: #6b8e5a26; }

        .feature-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .feature-card h4 {
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }

        .feature-card p {
            color: var(--medium-gray);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .values-content h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }

        .values-content p {
            font-size: 1.1rem;
            color: var(--medium-gray);
            margin-bottom: 1.5rem;
        }

        .values-icons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            align-items: center;
            align-content: center;
            justify-content: space-around;
        }

        .value-item {
            text-align: center;
        }

        .value-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .value-label {
            font-weight: 600;
            color: var(--dark-color);
        }

        .values-visual {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px #1a4d3a33;
        }

        .values-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            border-radius: 20px;
        }

        /* Experience Section */
        .experience-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .experience h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 2rem;
        }

        .experience p {
            font-size: 1.1rem;
            color: var(--medium-gray);
            margin-bottom: 2rem;
        }

        .expertise-areas {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .expertise-tag {
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--forest-green), var(--mountain-gray));
            color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .contact-details {
            margin-top: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .contact-item strong {
            margin-right: 1rem;
            min-width: 80px;
        }

        .contact-form {
            background: #ffffff1a;
            padding: 2rem;
            border-radius: 16px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-group select option {
            background: var(--forest-green);
            color: white;
        }

        .submit-button {
            background: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--forest-green);
            background-image:url('img/horizontal_splash.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        .footer p {
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

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

        /* Privacy Policy Modal */
        .privacy-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 2000;
            overflow-y: auto;
        }

        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .privacy-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--light-gray);
            padding-bottom: 1rem;
        }

        .privacy-header h1 {
            color: var(--dark-color);
            font-size: 2rem;
        }

        .close-button {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--medium-gray);
        }

        .privacy-text {
            line-height: 1.8;
            color: var(--text-color);
        }

        .privacy-text h2 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .privacy-text h3 {
            color: var(--dark-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .privacy-text p {
            margin-bottom: 1.5rem;
        }

        .privacy-text a {
            color: var(--primary-color);
        }

        /* Thank You page */
        .thankyou-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 124, 102, 0.95);
            backdrop-filter: blur(10px);
            z-index: 2000;
            overflow-y: auto;
        }

        .thankyou-content {
            max-width: 600px;
            margin: 10vh auto;
            padding: 3rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .thankyou-icon {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .thankyou-content h1 {
            color: var(--dark-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .thankyou-content p {
            color: var(--medium-gray);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .thankyou-details {
            background: var(--light-gray);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }

        .thankyou-details h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .thankyou-details p {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        /* 404 and other errors */
        .error-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 124, 102, 0.95);
            backdrop-filter: blur(10px);
            z-index: 2000;
            overflow-y: auto;
        }

        .error-content {
            max-width: 600px;
            margin: 10vh auto;
            padding: 3rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .error-icon {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .error-content h1 {
            color: var(--dark-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .error-content p {
            color: var(--medium-gray);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .error-details {
            background: var(--light-gray);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }

        .error-details h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .error-details p {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .return-button {
            background: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .return-button:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 800px) {
            .nav-menu {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

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

            .about-grid,
            .contact-grid,
            .values-grid,
            .service-detail-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-button {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .values-icons {
                flex-direction: column;
                gap: 1rem;
            }

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