/* Service Before/After Section Styles */
.service-before-after-section {
    background: #111111;
    padding: 60px 0;
    border-radius: 10px;
}

.service-before-after-section .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-before-after-section .section-title p {
    color: #666;
    font-size: 16px;
}

.before-after-card {
    background: #111111;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.before-after-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.before-after-card .twentytwenty-container {
    border-radius: 8px;
    overflow: hidden;
    height: 280px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .service-before-after-section {
        padding: 40px 15px;
    }
    
    .service-before-after-section .section-title h2 {
        font-size: 24px;
    }
}

