

        :root {
            --forest-green: #1B3022;
            --olive-green: #4F5D2F;
            --beige: #D6C7A1;
            --ivory: #FAF9F6;
            --white: #FFFFFF;
            --text-dark: #2C2C2C;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--ivory);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, .serif {
            font-family: 'Playfair Display', serif;
        }

        ul { list-style: none; }
        a { text-decoration: none; color: inherit; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            align-items: center;
            text-align: center;
        }
        .container-h {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            align-items: center;
            text-align: center;
        }

        /* --- Header --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--forest-green);
            padding-bottom: 20px;
        }

        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
            text-align: center;
            padding: 0 300px;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            text-align: center;
            align-items: center;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--olive-green);
            transition: var(--transition);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .btn-consult {
            background-color: var(--forest-green);
            color: var(--white) !important;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-consult:hover {
            background-color: var(--olive-green);
            transform: translateY(-2px);
        }

        /* --- Hero Section --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(27, 48, 34, 0.8), rgba(27, 48, 34, 0.8)), 
                        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&q=80') center/cover;
            color: var(--white);
            padding-top: 80px;
        }

        .hero-content {
            max-width: 700px;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
        }

        .btn-primary {
            background: var(--beige);
            color: var(--forest-green);
            padding: 15px 35px;
            border-radius: 5px;
            font-weight: 700;
            transition: var(--transition);
        }

        .btn-secondary {
            border: 2px solid var(--white);
            color: var(--white);
            padding: 13px 35px;
            border-radius: 5px;
            font-weight: 700;
            transition: var(--transition);
        }

        .btn-primary:hover { background: var(--white); }
        .btn-secondary:hover { background: var(--white); color: var(--forest-green); }

        /* --- Sections General --- */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--forest-green);
            margin-bottom: 10px;
        }

        .section-title span {
            color: var(--olive-green);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* --- About Section --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 20px 20px 0 var(--beige);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .about-feature-item i {
            color: var(--olive-green);
        }

        /* --- Services Section --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            background: var(--forest-green);
            color: var(--white);
        }

        .service-card i {
            font-size: 3rem;
            color: var(--olive-green);
            margin-bottom: 20px;
        }

        .service-card:hover i { color: var(--beige); }

        /* --- Why Choose Us --- */
        .why-us {
            background-color: var(--forest-green);
            color: var(--white);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            color: var(--beige);
        }

        /* --- Testimonials --- */
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            padding: 40px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .testimonial-slide { display: none; }
        .testimonial-slide.active { display: block; animation: fadeIn 0.8s; }

        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 20px;
            object-fit: cover;
        }

        /* --- Contact Section --- */
        .contact-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 50px;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .form-group { margin-bottom: 20px; }

        input, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
        }

        .btn-submit {
            background: var(--forest-green);
            color: var(--white);
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
        }

        .success-msg {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            text-align: center;
        }

        /* --- Footer --- */
        footer {
            background: #111;
            color: #ccc;
            padding: 80px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 25px;
        }

        .footer-links li { margin-bottom: 12px; }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover { background: var(--olive-green); color: var(--white); }

        /* --- Modals --- */
        .modal {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
        }

        .modal-content {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            max-width: 500px;
            width: 100%;
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
        }

        .close-modal {
            position: absolute;
            top: 15px; right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-grid, .contact-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.5rem; }
            .nav-links { display: none; } /* Simplified for demo */
        }
