.worker-selection-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 70px 30px;
    background: url("../images/painting-banner.png");

}

.worker-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.worker-option-card {
    background: rgba(0, 0, 0, 0);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 35px 20px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    color: #fff;
}

.worker-option-card:hover {
    transform: translateY(-6px);
    border-color: #f97316;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.worker-option-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.worker-option-card h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.worker-option-card p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

.worker-option-card button {
    margin-top: 18px;
    padding: 7px 10px;
    border-radius: 6px;
}