body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
    margin: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.category {
    margin-bottom: 30px;
}

.category h2 {
    border-bottom: 3px solid #c1b086;
    padding-bottom: 5px;
    margin-bottom: 15px;
    color: #000;
}

.service-card {
    display: inline-block;
    background-color: #fff;
    padding: 15px;
    margin: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    text-align: center;
    vertical-align: top;
    border: 1px solid #000;
}

.service-card.selected {
    border: 1px solid #c1b086;
    background-color: #c1b086;
    position: relative;
    color: #fff;
}

/* Mobil nézet */
@media (max-width: 600px) {
    .service-card {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}
