@media (max-width: 500px) {
    .titleContainer {
        background: url("../images/titlePic/imgDR1.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/imgDR1.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.5); /* 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;
        padding-right: 250px;
    }
}
#benefits li{
    font-size: 14px;
    padding: 5px;
}
h1{
    text-align: left;
}
.bold{
    font-weight: 700;
}

#doneSign{
    height: auto;
    width: 300px;
}

@media (max-width: 600px) {
    #doneSign{
    height: auto;
    width: 150px;
}
}

#thxText{
    text-align: center;
    margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #455762; /* modrá barva */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s;
  margin-top: 30px;
}

.btn:hover {
  background-color: #1b1d20;
}