/* --- VYJÁDŘENÍ K EXISTENCI SÍTÍ --- */

/* Základní rozvržení */
.section-vyjadreni {
    padding: 60px 0;
    background-color: #fff;
}

/* Jednoduchý nadpis (pokud není v globalu) */
.page-title-simple {
    padding: 60px 0 40px 0;
    text-align: center;
    background-color: #fff;
}

.page-title-simple h1 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

/* Grid layout (Mapa vlevo, Text vpravo) */
.vyjadreni-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    /* Poměr stran dle obrázku */
    gap: 40px;
    background-color: #f9f9f9;
    /* Jemné šedé pozadí celého bloku */
    padding: 30px;
    border-radius: 4px;
}

/* Obrázek mapy */
.vyjadreni-img img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 5px;
}

/* Textový obsah */
.vyjadreni-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.vyjadreni-text h3 {
    color: #222;
    /* Tmavě šedá/černá */
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.vyjadreni-text p {
    margin-bottom: 15px;
}

.vyjadreni-text h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

/* Seznam */
.request-list {
    list-style: none;
    /* Odstraníme defaultní odrážky */
    padding: 0;
    margin: 0 0 25px 0;
}

.request-list li {
    margin-bottom: 10px;
    padding-left: 0;
    color: #555;
}

/* Cenové položky */
.pricing-text {
    margin-bottom: 10px;
}

.pricing-text strong {
    color: #000;
}

/* Responsivita pro mobily */
@media (max-width: 991px) {
    .vyjadreni-grid {
        grid-template-columns: 1fr;
        /* Pod sebe */
        gap: 30px;
    }

    .vyjadreni-img {
        max-width: 400px;
        margin: 0 auto;
    }
}