@media (max-width: 500px) {
    .titleContainer {
        background: url("../images/titlePic/imgL1.jpg") center/cover no-repeat;
    text-align: center;
    color: #ffffff;
    max-height: 200px;
    padding: 70px 20px;
    height: 110px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    }
    .titleContainer h1 {
        position: relative;
        z-index: 2; /* Text nad tmavým overlayem */
        transform: translateY(10px); /* Posunutí textu o 20px dolů */
    }
}
.titleContainer {
    background: url("../images/titlePic/imgL1.jpg") center/cover no-repeat;
    text-align: center;
    color: #ffffff;
    padding: 90px 20px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.titleContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Přidání tmavého overlaye */
    z-index: 1;
}
@media (min-width: 501px) {
    .titleContainer h1 {
        position: relative;
        z-index: 2; /* Text nad tmavým overlayem */
        transform: translateY(80px); /* Posunutí textu o 20px dolů */
        text-align: center;
    }
}
#benefits li{
    font-size: 14px;
    padding: 5px;
}
h1{
    text-align: left;
}
.bold{
    font-weight: 700;
}