
        .services-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #3498db;
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 30px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
            color: white;
        }

        .service-card:nth-child(1) .service-icon {
            background-color: #3498db;
        }

        .service-card:nth-child(2) .service-icon {
            background-color: #2ecc71;
        }

        .service-card:nth-child(3) .service-icon {
            background-color: #9b59b6;
        }

        .service-card:nth-child(4) .service-icon {
            background-color: #e74c3c;
        }

        .service-card:nth-child(5) .service-icon {
            background-color: #f39c12;
        }

        .service-card:nth-child(6) .service-icon {
            background-color: #1abc9c;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .service-card p {
            color: #555;
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .services-container {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .service-card {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .services-section {
                padding: 40px 15px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
        }