.service-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px; /* vnitřní odsazení – cca 10–16 px od všeho */

    background: #ffffff; /* bílé pozadí */
    border-radius: 16px; /* zakulacení rohů */

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); /* jemný stín */
    margin-bottom: 46px;
}


.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    
}

.reverse {
    flex-direction: row-reverse;
}

.reverse .service-text {
    text-align:center;
}

.service-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 8px;
    object-fit: cover;
}

.service-text {
    flex: 1;
    text-align:center;
}

.service-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-text ul {
    list-style: none;
    padding: 0;
}

.service-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1f2937;
}

.service-text ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #4da3ff;
    font-size: 20px;
    line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .service-row,
    .service-row.reverse {
        flex-direction: column;
    }

    .service-text h2 {
        font-size: 28px;
    }
}

.service-accordion {
    margin-top: 25px;
}

    .service-accordion details {
        border-bottom: 1px solid #e5e5e5;
        padding: 10px 0;
    }

    .service-accordion summary {
        cursor: pointer;
        font-weight: 600;
        font-size: 20px;
        list-style: none;
        position: relative;
        padding-right: 25px;
        margin-bottom: 10px;
    }

        .service-accordion summary::after {
            content: "›";
            position: absolute;
            right: 0;
            top: 0;
            font-size: 18px;
            transform: rotate(90deg);
            transition: transform 0.2s ease;
        }

    .service-accordion details[open] summary::after {
        transform: rotate(-90deg);
    }

    .service-accordion p {
        margin: 10px 0 0;
        color: #555;
        font-size: 14px;
        line-height: 1.6;
    }

.hh {
    font-size: 54px;
    text-align: center;
}

.hhh {
    font-size: 24px;
}

.hhhh {
    font-size: 16px;
    color: dimgray;
    margin-bottom: 6px;
}

.a {
    color: #0458BD;
}


#masthead  {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    z-index: 1000;
}

#content  {
    padding-top: 84px;
}

.mobile-nav {
    display: flex;
}