        .benefits-section {
            background-color: #f5f5f5;
            padding: 80px 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-top: 4px solid #e67e22;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .benefit-icon {
            font-size: 40px;
            color: #e67e22;
            margin-bottom: 20px;
        }
        
        .process-section {
            padding: 80px 0;
        }
        
        .process-steps {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: #003366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            flex-shrink: 0;
            margin-right: 30px;
            position: relative;
        }
        
        .step-content {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            flex-grow: 1;
            border-left: 4px solid #e67e22;
        }
        
        .step-content h3 {
            color: #003366;
            margin-bottom: 10px;
        }
        
        .cta-section {
            background: #003366;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section .btn {
            background: #e67e22;
            font-size: 18px;
            padding: 15px 40px;
        }
        
        .cta-section .btn:hover {
            background: #d35400;
        }
        
        @media (max-width: 768px) {
            .service-hero {
                height: 50vh;
            }
            
            .process-step {
                flex-direction: column;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        .service-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.service-text, .service-image {
    flex: 1;
}

@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
        text-align: center;
    }

    .service-image img {
        max-width: 100%;
        height: auto;
    }
}