@media (max-width: 500px) {
    .titleContainer {
        background: url("../images/titlePic/imgK1.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/imgK1.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;
    }
}
#benefits li{
    font-size: 14px;
    padding: 5px;
}
h1{
    text-align: left;
}
h3{
    padding-bottom:15px;
}
.spaceTop{
    padding-top: 60px;
}
.bigger{
    font-size: 30px;
}
.bold{
    font-weight: 700;
}
.formPart{
    align-items: block;
}
.styledForm {
    background-color: #1c1c1c;
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    font-family: "Segoe UI", sans-serif;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.styledForm .formPart {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.styledForm input[type="text"],
.styledForm select,
.styledForm textarea {
    background-color: #2b2b2b;
    color: #fff;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 12px;
    font-size: 16px;
    resize: vertical;
    width: 100%;
}

.styledForm label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #ddd;
}

.styledForm textarea {
    min-height: 120px;
}

.styledForm button[type="submit"] {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.styledForm button[type="submit"]:hover {
    background-color: #f0f0f0;
    color: #333;
}

.styledForm .consent label {
    font-size: 14px;
    color: #aaa;
}
.star-rating {
  display: flex;
  gap: 6px;
  cursor: pointer;
  justify-content: center;
  width: 100%;
}

.star-rating .star {
  width: 32px;
  height: 32px;
  filter: grayscale(100%) brightness(60%);
  transition: filter 0.2s ease;
}

@media (max-width: 500px) {
    .star-rating .star {
        width: 25px;
        height: 25px;
    }
}

#formTitle{
    text-align: center;
}

#mapaNadpis{
    text-align: center;
    padding-top: 60px;
}

@media (max-width: 394px) {
    #zaplata{
        opacity:0;
    }
}
@media (min-width: 650px) {
    .grid3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
    }
}

#icon{
    height: 150px;
}

.phoneIcon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.phoneNumber {
    margin-top: 23px;
    font-size: 16px;
    color: black;
    transition: text-shadow 0.5s ease;
}

.phoneIcon:hover .phoneNumber {
    text-shadow: 10px 10px 10px rgb(0, 0, 0); /* Stín za textem */
}

#emailText{
    font-size: 12px;
}

.privacy-link {
  color: #6c757d;          /* stejná šedá jako ostatní text */
  font-weight: bold;       /* tučnější */
  text-decoration: none;   /* bez podtržení */
  transition: color 0.3s;  /* hladký přechod */
}

.privacy-link:hover {
  color: #a0a0a0;          /* světlejší šedá při najetí myší */
}