.ponuka-sluzieb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.sluzba {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

.sluzba img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.sluzba-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sluzba-text h3 {
    margin-bottom: 10px;
}

.sluzba-text p {
    margin-bottom: 5px;
}

.tlacidlo {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 20px;
    background: #c9a66b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    width: 150px;
}

.tlacidlo:hover {
    background: #b08952;
}