            /* --- CSS RESET & VARIABLE DESIGN SYSTEM --- */
            :root {
                --color-bg: #faf7f2;
                --color-primary: #2d4a43; /* Deep Sage / Forest Green */
                --color-text: #3d3a35; /* Soft Charcoal */
                --color-accent: #d4a373; /* Soft Terracotta */
                --color-white: #ffffff;
                --font-serif: "Georgia", "Times New Roman", serif;
                --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            }

            * {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }

			/*** Body Elements ***/
            body {
                background-color: var(--color-bg);
                color: var(--color-text);
                font-family: var(--font-sans);
                line-height: 1.7;
                -webkit-font-smoothing: antialiased;
            }

            a {
                color: var(--color-primary);
                text-decoration: none;
                transition: color 0.3s ease;
            }
			/*** Images ***/
            img {
                max-width: 100%;
                height: auto;
                display: block;
            }

            /* --- HEADER & NAVIGATION --- */
            header {
                background-color: gray
                box-shadow: 0 2px 15px rgba(0,0,0,0.03);
                position: none;
                top: 0;
                z-index: 100;
            }

            .nav-container {
                max-width: 1200px;
                margin: 0 auto;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1rem 2rem;
            }

            .logo img {
                max-height: 60px;
            }

            .nav-menu {
                display: flex;
                align-items: center;
                list-style: none;
                gap: 2rem;
            }

            .nav-item {
                position: relative;
                font-size: 0.95rem;
                font-weight: 500;
            }

            .nav-link {
                color: var(--color-text);
                padding: 0.5rem 0;
            }

            .nav-link:hover, .nav-link.active {
                color: var(--color-primary);
            }

            /*** Dropdown Menus ***/
            .dropdown {
                position: relative;
            }

            .dropdown:hover .submenu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .submenu {
                position: absolute;
                top: 100%;
                left: 0;
                background-color: var(--color-white);
                box-shadow: 0 5px 20px rgba(0,0,0,0.08);
                list-style: none;
                min-width: 220px;
                border-radius: 6px;
                padding: 0.5rem 0;
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: all 0.3s ease;
            }

            .submenu li a {
                display: block;
                padding: 0.6rem 1.5rem;
                color: var(--color-text);
                font-size: 0.9rem;
            }

            .submenu li a:hover {
                background-color: var(--color-bg);
                color: var(--color-primary);
            }

            /*** Buttons ***/
            .btn {
                display: inline-block;
                background-color: var(--color-primary);
                color: var(--color-white) !important;
                padding: 0.75rem 1.8rem;
                border-radius: 50px;
                font-weight: 500;
                text-align: center;
                border: 2px solid transparent;
                transition: all 0.3s ease;
                box-shadow: 0 4px 10px rgba(45, 74, 67, 0.15);
            }

            .btn:hover {
                background-color: var(--color-white);
                color: var(--color-primary) !important;
                border-color: var(--color-primary);
                transform: translateY(-2px);
            }

            .btn-accent {
                background-color: var(--color-accent);
                box-shadow: 0 4px 10px rgba(212, 163, 115, 0.2);
            }

            .btn-accent:hover {
                background-color: var(--color-white);
                color: var(--color-accent) !important;
                border-color: var(--color-accent);
            }

            .btn-outline {
                background-color: transparent;
                color: var(--color-primary) !important;
                border: 2px solid var(--color-primary);
                box-shadow: none;
            }

            .btn-outline:hover {
                background-color: var(--color-primary);
                color: var(--color-white) !important;
            }

            /* --- HERO SECTION --- */
            .hero-section {
                padding: 5rem 2rem 6rem;
                text-align: center;
                max-width: 800px;
                margin: 0 auto;
				color:gray;
				
            }

            .hero-title {
                font-family: var(--font-serif);
                color: var(--color-primary);
                line-height: 1.2;
                margin-bottom: 1.5rem;
                font-weight: 400;
				 color:black;
				font-size: 50px;
				text-transform: uppercase;
				text-align: center;
				
            }

            .hero-subtitle {
                font-size: 1.25rem;
                margin-bottom: 2.5rem;
                color: var(--color-text);
                opacity: 0.9;
				text-align:center;
				
            }

            .hero-buttons {
                display: flex;
                justify-content: center;
                gap: 1.5rem;
                flex-wrap: wrap;
            }

            /* --- BADGE / TRUST SECTION --- */
            .trust-badge-container {
                display: flex;
                justify-content: center;
                padding: 2rem;
                margin-bottom: 4rem;
            }
            .trust-badge-container img {
                max-height: 100px;
                opacity: 0.85;
            }

            /* --- SECTION GENERAL --- */
            .section-container {
                max-width: 1100px;
                margin: 0 auto 6rem;
                padding: 0 2rem;
            }

            .section-title {
                font-family: var(--font-serif);
                font-size: 2.2rem;
                color: var(--color-primary);
                margin-bottom: 1.5rem;
                font-weight: 400;
            }

            /* --- GRID SERVICES --- */
            .services-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2.5rem;
                margin-top: 3rem;
            }

            .service-card {
                background: var(--color-white);
                border-radius: 12px;
                padding: 2.5rem 2rem;
                text-align: center;
                box-shadow: 0 4px 20px rgba(0,0,0,0.02);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .service-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            }

            .service-img-wrapper {
                width: 120px;
                height: 120px;
                margin: 0 auto 1.5rem;
                border-radius: 50%;
                overflow: hidden;
                border: 3px solid var(--color-bg);
            }

            .service-img-wrapper img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .service-card h3 {
                font-family: var(--font-serif);
                color: var(--color-primary);
                margin-bottom: 0.8rem;
                font-size: 1.4rem;
                font-weight: 400;
            }

            .service-card p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
                min-height: 70px;
            }

            /* --- SPLIT TWO-COLUMN SECTIONS --- */
            .split-section {
                display: flex;
                align-items: center;
                gap: 4rem;
                margin-bottom: 7rem;
            }

            .split-section.reverse {
                flex-direction: row-reverse;
            }

            .split-media, .split-content {
                flex: 1;
            }

            .split-media img {
                border-radius: 16px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            }

            .split-content p {
                margin-bottom: 1.5rem;
            }

            /* --- CTA BLOCK --- */
            .cta-block {
                background-color: var(--color-primary);
                color: var(--color-white);
                border-radius: 16px;
                padding: 5rem 3rem;
                text-align: center;
                max-width: 1100px;
                margin: 0 auto 6rem;
                box-shadow: 0 10px 30px rgba(45, 74, 67, 0.2);
            }

            .cta-block .section-title {
                color: var(--color-white);
            }

            .cta-block p {
                max-width: 650px;
                margin: 0 auto 2.5rem;
                opacity: 0.9;
                font-size: 1.1rem;
            }

            /* --- FOOTER --- */
            footer {
                background-color: #212522;
                color: #b5beb7;
                padding: 4rem 2rem 2rem;
                font-size: 0.9rem;
            }

            .footer-inner {
                max-width: 1100px;
                margin: 0 auto;
                text-align: center;
            }

            .social-links {
                display: flex;
                justify-content: center;
                list-style: none;
                gap: 1.5rem;
                margin-bottom: 2rem;
            }

            .social-links a {
                color: #b5beb7;
                font-size: 1.2rem;
            }

            .social-links a:hover {
                color: var(--color-accent);
            }

            .footer-nav {
                margin-bottom: 1.5rem;
            }

            .footer-nav a {
                color: #b5beb7;
                margin: 0 0.75rem;
            }

            .footer-nav a:hover {
                color: var(--color-white);
            }

            .footer-contact {
                margin-bottom: 2rem;
                line-height: 1.8;
            }

            .footer-contact a {
                color: #b5beb7;
            }
            
            .footer-contact a:hover {
                color: var(--color-white);
            }

            .copyright {
                border-top: 1px solid #2d332f;
                padding-top: 2rem;
                font-size: 0.8rem;
                opacity: 0.7;
            }

            /* --- RESPONSIVE STYLES --- */
            @media (max-width: 992px) {
                .split-section, .split-section.reverse {
                    flex-direction: column;
                    gap: 2rem;
                }
                .hero-title {
                    font-size: 2.8rem;
                }
            }

            @media (max-width: 768px) {
                .nav-menu {
                    display: none;
                }
                .hero-section {
                    padding: 5rem 1rem 3rem;
                }
                .hero-title {
                    font-size: 2.2rem;
                }
				
            }
			

 