
        :root {
            --mustard-yellow: #E9B44C;
            --charcoal: #36454F;
            --white: #FFFFFF;
            --light-gray: #F8F9FA;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--charcoal);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--charcoal) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--mustard-yellow);
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--charcoal) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--mustard-yellow) !important;
        }
        
        .btn-cta {
            background-color: var(--mustard-yellow);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta:hover {
            background-color: var(--charcoal);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(233,180,76,0.1) 0%, rgba(54,69,79,0.05) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            color: var(--charcoal);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #555;
        }
        
        .hero-image {
            position: relative;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--charcoal);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
        }
        
        /* About Section */
        .about-section {
            background-color: var(--light-gray);
        }
        
        .about-content {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--charcoal);
            color: var(--white);
        }
        
        .counter-box {
            text-align: center;
            padding: 40px 20px;
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--mustard-yellow);
            margin-bottom: 20px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Vision Mission Section */
        .vm-box {
            padding: 40px;
            border-radius: 10px;
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vm-box:hover {
            transform: translateY(-10px);
        }
        
        .vm-box i {
            font-size: 2.5rem;
            color: var(--mustard-yellow);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--mustard-yellow);
            margin-bottom: 20px;
        }
        
        /* Services Section */
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card h5 {
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        /* Reviews Section */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .review-stars {
            color: var(--mustard-yellow);
            margin-bottom: 15px;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background-color: var(--mustard-yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: var(--light-gray);
            color: var(--charcoal);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--mustard-yellow);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--mustard-yellow);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--mustard-yellow) 100%);
            color: var(--white);
            padding: 80px 0;
        }
        
        /* Contact Section */
        .contact-info-box {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--mustard-yellow);
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--charcoal);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }
        
        .footer-links a:hover {
            color: var(--mustard-yellow);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--mustard-yellow);
            text-decoration: none;
            margin: 0 10px;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            position: relative;
            padding: 30px 20px;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--mustard-yellow);
            transform: translateY(-50%);
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--mustard-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--white);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .process-step::after {
                display: none;
            }
        }
