.services-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.service-item {
    margin-bottom: 80px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-image {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 3px solid #f7a442;
    transition: all 0.3s ease;
}

.service-content {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(247, 164, 66, 0.2);
    transition: all 0.3s ease;
}

.service-content h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-content h3 i {
    color: #f7a442;
    font-size: 1.5rem;
}

.service-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Hover Effects */
.service-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(247, 164, 66, 0.2);
}

.service-content:hover {
    transform: translateY(-5px);
    border-color: #f7a442;
}

@media (max-width: 991px) {
    .service-item {
        margin-bottom: 40px;
    }
    
    .service-content {
        margin-top: 20px;
    }

    .col-lg-6.order-lg-2 {
        order: -1;
    }
}