﻿.sluzba-detail {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.sluzba-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
    margin-right: 1rem;
}

.sluzba-detail h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 3px solid #007bff;
    padding-bottom: 0.3rem;
}

.sluzba-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin: 2rem 0;
    border-radius: 10px;
    background-color: #f8f9fa;
}

.sluzba-description {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.sluzba-points {
    margin-top: 2rem;
    list-style: none;
    padding-left: 0;
    text-align: left;
}

    .sluzba-points li {
        padding-left: 1.5rem;
        position: relative;
        margin-bottom: 1rem;
        font-weight: 500;
    }

        .sluzba-points li::before {
            content: "●";
            position: absolute;
            left: 0;
            color: #007bff;
            font-size: 1rem;
            line-height: 1;
        }
