 /* Hero Section */
        .hero {
            background: linear-gradient(rgba(33, 41, 60, 0.8), rgba(33, 41, 60, 0.9)), url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        
        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #fff800;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: #fff800;
            color: #000;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid #fff800;
        }
        .service-card .btn {
            display: none;
        }
        
        .btn:hover {
            background-color: transparent;
            color: #fff800;
        }
        

/* Services Section */
        .services {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #21293c;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            background-color: #21293c;
            color: #fff800;
            font-size: 2.5rem;
            padding: 25px 0;
            text-align: center;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: #21293c;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .service-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        /* Features Section */
        .features {
            background-color: #21293c;
            padding: 80px 0;
            color: white;
        }
        
        .features .section-title h2 {
            color: #fff800;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: transform 0.3s;
        }
        
        .feature:hover {
            transform: translateY(-5px);
        }
        
        .feature i {
            font-size: 2.5rem;
            color: #fff800;
            margin-bottom: 20px;
        }
        
        .feature h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        /* CTA Section */
        .cta {
            background-color: #fff800;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta h2 {
            color: #000;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            color: #333;
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .cta .btn {
            background-color: #21293c;
            color: white;
            border-color: #21293c;
        }
        
        .cta .btn:hover {
            background-color: transparent;
            color: #21293c;
        }