 /* Services Hero Section */
        .services-hero {
            padding: 12rem 5% 6rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
        }

        .services-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .services-hero p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Services Grid */
        .services-container {
            padding: 4rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            display: flex;
            align-items: center;
            gap: 5rem;
            margin-bottom: 6rem;
            background: white;
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .service-card.reverse {
            flex-direction: row-reverse;
        }

        .service-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .service-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .service-content {
            flex: 1;
        }

        .service-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .service-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark);
            margin-bottom: 2rem;
        }

        .features-list {
            margin-bottom: 2rem;
        }

        .features-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .features-list i {
            color: var(--secondary);
            margin-top: 0.3rem;
        }

        .service-cta {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .service-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }

        /* Benefits Section */
        .benefits-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
            text-align: center;
        }

        .benefits-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .benefits-section p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        /*.benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }*/

        .benefit-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .benefit-card p {
            color: var(--gray);
            line-height: 1.8;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .service-card {
                gap: 3rem;
            }
        }

        @media (max-width: 992px) {
            .service-card {
                flex-direction: column;
            }
            
            .service-card.reverse {
                flex-direction: column;
            }
            
            .service-image, .service-content {
                width: 100%;
            }
            
            .services-hero h1 {
                font-size: 3rem;
            }
        }

       /* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-img-container {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 1.2rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}


