/* ========== ПРАВИЙ БЛОК З ПОСЛУГАМИ (СТОРІНКА ЧИСТКИ) ========== */
.service-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.service-item {
    background-color: rgba(200, 200, 200, 0.85);
    padding: 16px 24px;
    border-radius: 40px 0px;
    font-size: 17px;
    text-align: center;
    color: #111111;
    font-weight: 700;
    font-family: 'Open Sans', 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

/* Ефект при наведенні (опціонально) */
.service-item:hover {
    background-color: rgba(200, 200, 200, 1);
    transform: translateX(5px);
}

/* Адаптація для мобільних */
@media (max-width: 768px) {
    .service-item {
        padding: 12px 18px;
        font-size: 15px;
    }
}

/* Elfsight віджет - відступ */
.elfsight-wrapper {
    margin-top: -200px;
}