.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.service-item:hover {
    background: #f9f9f9;
}

.service-item input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.calc-results {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fafafa;
}

.calc-results h3 {
    margin-bottom: 10px;
}

.calc-results p {
    font-weight: 500;
    margin: 5px 0;
}
