    .grid-container {
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .card {
        background: #f7f7f7;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 260px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
    }

    .card:hover {
        transform: scale(1.05);
        color: #ffffff;
        background-color: #289ab8;
    }

    .card-top p {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 12px;
        color: #000000;
    }

    .card-top p {
        font-size: 16px;
        color: #666666;
        line-height: 1.5;
        font-weight: 500;
    }

    .card-middle {
        margin: 25px 0;
    }

    .price {
        font-size: 24px;
        font-weight: 400;
        color: #289AB8;
    }

    .btn-book {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        color: #000;
        font-size: 16px;
        font-weight: 400;
        transition: color 0.2s ease;
    }

    .card:hover p,
    .card:hover p,
    .card:hover .price,
    .card:hover .btn-book {
        color: #ffffff;
    }

    .btn-book span {
        margin-left: 6px;
        transition: transform 0.2s ease;
    }

    .btn-book:hover {
        color: #2cb5d1;
    }

    .btn-book:hover span {
        transform: translateX(4px);
    }


.har_block {
    font-size: 12px;
    max-width: 100%;
    flex: 0 0 75%;
    -webkit-box-flex: 0;
    padding: 10px 0 0 0;
    position: relative;
    color: #000;
    display: inline-block;
    width: 100%;
}
.har_block-item {
	display: flex;
    margin-bottom: 6px;
    font-size: 1em;
    justify-content: space-between;
    color: #555;
}

    /* FAQ */
.faq-section{
    max-width:900px;
    margin:60px auto;
}

.faq-title{
    margin:0 0 35px;
    font-size:34px;
    font-weight:700;
    color:#000;
    text-align:center;
}

.faq-item{
    position:relative;
    margin-bottom:18px;
    border:1px solid #e8eef2;
    border-radius:18px;
    background:#fff;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.faq-item::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:#289AB8;
    transform:scaleY(0);
    transform-origin:top;
    transition:transform .3s ease;
    border-radius:4px;
}

.faq-item:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 38px rgba(0,0,0,.08);
}

.faq-item[open]{
    background:linear-gradient(180deg,#ffffff 0%,#fbfeff 100%);
    border-color:#289AB8;
    box-shadow:0 6px 18px rgba(40,154,184,.08);
}

.faq-item[open]::before{
    transform:scaleY(1);
}

.faq-item summary{
    position:relative;
    display:flex;
    align-items:center;
    list-style:none;
    cursor:pointer;
    padding:24px 60px 24px 28px;
    font-size:19px;
    font-weight:600;
    color:#000;
    transition:color .25s ease;
}

.faq-item summary span{
    display:block;
    width:100%;
    padding-right:20px;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::marker{
    display:none;
}

.faq-item summary:hover{
    color:#289AB8;
}

.faq-item i{
    position:absolute;
    right:28px;
    top:50%;
    transform:translateY(-50%);
    color:#289AB8;
    font-size:20px;
    transition:transform .35s ease;
}

.faq-item[open] i{
    transform:translateY(-50%) rotate(180deg);
}

.faq-answer{
    padding:0 28px 28px;
    color:#1f1f1f;
    line-height:1.8;
    font-size:16px;
    animation:faqFade .3s ease;
}

.faq-answer p{
    margin:0;
}

@keyframes faqFade{

    from{
        opacity:0;
        transform:translateY(-6px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

    /* Адаптивность для планшетов и мобильных устройств */
    @media (max-width: 992px) {
        .grid-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:768px){

    .faq-section{
        margin:40px auto;
    }

    .faq-title{
        font-size:28px;
        margin-bottom:28px;
    }

    .faq-item summary{
    padding:18px 52px 18px 18px;
    font-size:17px;
}

    .faq-item i{
        font-size:18px;
    }

    .faq-answer{
        padding:0 18px 18px;
        font-size:15px;
        line-height:1.7;
    }

}

    @media (max-width: 600px) {
        .grid-container {
            grid-template-columns: 1fr;
        }

        .card {
            padding: 20px;
            min-height: auto;
        }
    }

