.service-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.service-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-header {
    text-align: center;
    margin-bottom: 30px;
}

.service-header h2 {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 15px;
}

.before-after-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.before-after-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.service-description {
    background-color: rgba(33, 33, 33, 0.9);
    padding: 30px;
    border-left: 4px solid #D4AF37;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-description p {
    color: #FFFFFF;
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .before-after-container {
        flex-direction: row;
    }
    
    .before-after-image {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .service-header h2 {
        font-size: 1.5rem;
    }
    
    .service-description {
        padding: 20px;
    }
    
    .service-description p {
        font-size: 1rem;
    }
}
