		:root {
            --primary: #006D5B; /* Deep teal - professional alternative to blue */
            --secondary: #B8860B; /* Gold accent */
            --dark: #1A1A1A; /* Charcoal black */
            --light: #FFFFFF; /* White */
            --gray: #5D5D5D; /* Medium gray */
            --light-gray: #F5F5F5; /* Light background */
            --border: #E0E0E0; /* Border color */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            font-weight: 400;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            color: var(--dark);
            font-weight: 600;
        }
        
        h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-padding {
            padding: 5rem 0;
        }
        .hero-centered {
			min-height: 85vh;
			display: flex;
			align-items: center;
			justify-content: center;
			text-align: center;
		}

		.hero-center-content {
			max-width: 850px;
		}

		.hero-centered .label {
			display: inline-block;
			margin-bottom: 1rem;
			font-size: 0.85rem;
			letter-spacing: 1.5px;
			text-transform: uppercase;
			color: var(--secondary);
			font-weight: 600;
		}

		.hero-centered h1 {
			font-size: 3.2rem;
		}

		.hero-centered p {
			margin: 1.5rem auto 2.5rem;
			font-size: 1.15rem;
			color: var(--gray);
		}

		@media (max-width: 768px) {
			.hero-centered h1 {
				font-size: 2.3rem;
			}
		}

        /* Header & Navigation */
        header {
            background-color: var(--light);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary);
            margin-left: 0.75rem;
        }
        
        .logo-icon {
            color: var(--secondary);
            font-size: 1.8rem;
        }
		.logo-img {
			width: 90px;
			height: auto;
			display: block;
		}

		@media (max-width: 768px) {
			.logo-img {
				width: 45px;
			}
		}
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 2.5rem;
        }
        
        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav a:hover {
            color: var(--primary);
        }
        
        nav a.active {
            color: var(--primary);
        }
        
        nav a.active:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
        }
        
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }
        
        /* Hero Section */
        .hero {
            background-color: var(--light-gray);
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            min-height: 80vh;
        }
        
        .hero-content {
            flex: 1;
            padding-right: 2rem;
        }       
        
        .hero p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 1rem 2.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid var(--primary);
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--primary);
        }
        
        .secondary-button {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            margin-left: 1rem;
        }
        
        .secondary-button:hover {
            background-color: var(--primary);
            color: var(--light);
        }
        
        /* Services Section */
        .services {
            background-color: var(--light);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-header p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--gray);
            font-size: 1.1rem;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .service-card {
            background-color: var(--light);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-top: 3px solid var(--primary);
            height: 100%;
            display: flex;
            flex-direction: column;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        
        .service-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 109, 91, 0.08);
            border-radius: 8px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .service-card h3 {
            margin-bottom: 0.75rem;
            font-size: 1.2rem;
        }
        
        .service-card p {
            color: var(--gray);
            margin-bottom: 1rem;
            flex-grow: 1;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        /* About Us Section */
        .why-choose-us {
            background-color: var(--light-gray);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .feature-icon {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-right: 1.5rem;
            margin-top: 5px;
        }
        
        .feature-content h4 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
        .cta-section {
            background-color: var(--primary);
            color: var(--light);
            text-align: center;
        }
        
        .cta-section h2 {
            color: var(--light);
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
        }
        
        .cta-button-light {
            background-color: var(--light);
            color: var(--primary);
        }
        
        .cta-button-light:hover {
            background-color: transparent;
            color: var(--light);
            border-color: var(--light);
        }
        
        /* Footer  */
        footer {
            background-color: var(--dark);
            color: var(--light);
        }
        
        .footer-content {
            padding: 3rem 0;
            text-align: center;
        }
        
        .footer-content h3 {
            color: var(--light);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-content p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            justify-content: center;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light);
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0;
            text-align: center;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero-container {
                flex-direction: column;
                padding: 4rem 0;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 3rem;
                text-align: center;
            }
            
            .hero p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--light);
                box-shadow: 0 10px 20px rgba(0,0,0,0.05);
                padding: 1.5rem 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
                padding: 0 2rem;
            }
            
            nav li {
                margin: 0;
                margin-bottom: 1rem;
            }
            
            h1 {
                font-size: 2.4rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 4rem 0;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .button-group {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
            
            .secondary-button {
                margin-left: 0;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                padding: 1.25rem;
            }
        }