
        
        /* Services Hero Section */
        .services-hero {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
            position: relative;
        }
        
        .services-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #222;
            line-height: 1.2;
        }
        
        .services-subtitle {
            font-size: 1.4rem;
            color: var(--gold-color);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .services-subtitle i {
            margin-left: 10px;
        }
        
        .services-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
            text-align: center;
            max-width: 700px;
            margin-right: auto;
            margin-left: auto;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: white;
        }
        
        .section-title {
            margin-bottom: 50px;
            font-weight: 800;
            color: #222;
            position: relative;
            font-size: 2.2rem;
            padding-bottom: 15px;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 4px;
            background: var(--gold-color);
            border-radius: 2px;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            text-align: center;
            transition: var(--transition);
            border-top: 5px solid var(--gold-color);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 0;
            background: var(--light-gold);
            transition: var(--transition);
            z-index: 1;
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            font-size: 4rem;
            color: var(--gold-color);
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
        }
        
        .service-title {
            font-weight: 800;
            margin-bottom: 20px;
            color: #222;
            font-size: 1.6rem;
            position: relative;
            z-index: 2;
        }
        
        .service-description {
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
        }
        
        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--gold-color);
            margin-left: 25px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        .feature-content {
            flex: 1;
        }
        
        .feature-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: #222;
            font-size: 1.4rem;
        }
        
        .feature-description {
            color: #555;
            line-height: 1.7;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1552733407-5d5c46c3bb3b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        
        .cta-title {
            font-weight: 800;
            margin-bottom: 25px;
            color: white;
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
        }
        
        .cta-description {
            color: rgba(255,255,255,0.9);
            margin-bottom: 35px;
            font-size: 1.2rem;
            max-width: 600px;
            margin-right: auto;
            margin-left: auto;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn {
            background: white;
            color: var(--gold-color);
            padding: 15px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            border: none;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(255,255,255,0.2);
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
        }
        
        .cta-btn i {
            margin-left: 10px;
        }
        
        .cta-btn:hover {
            background: var(--gold-dark);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255,255,255,0.3);
        }
        
       
        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .services-title {
                font-size: 3rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            .services-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .services-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .services-description {
                font-size: 1.1rem;
            }
            
            .service-card {
                padding: 30px 25px;
            }
            
            .service-icon {
                font-size: 3.5rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .services-title {
                font-size: 2rem;
            }
            
            .services-subtitle {
                font-size: 1.2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                padding: 25px 20px;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
            }
            
            .feature-icon {
                margin-left: 0;
                margin-bottom: 15px;
            }
        }