
.vital-faq {
    background: #ffffff;
    font-family: Arial, sans-serif;
    padding-bottom: 80px;
}


.vital-faq-question span:nth-of-type(2) {
  
    line-height : 16px;
}


.vital-faq-hero {
    min-height: 340px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.78), rgba(239,43,43,.88)),
        url('/front/images/vital-dome.jpg') center right / cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 70px 7%;
    border-bottom: 5px solid #ef2b2b;
}

.vital-faq-hero-content {
    max-width: 760px;
}

.vital-faq-hero span {
    color: #ef2b2b;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.vital-faq-hero h1 {
    /*font-size: clamp(42px, 6vw, 72px);*/
    font-size: clamp(37px, 6vw, 72px);
    margin: 18px 0;
    
    font-weight: 400;
        font-family: "Bebas Neue", sans-serif;
    
}

.vital-faq-hero h1 strong {
    color: #ef2b2b;
}

.vital-faq-hero p {
    font-size: 21px;
    line-height: 1.5;
    max-width: 660px;
}

.vital-faq-container {
    max-width: 1180px;
    margin: -55px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.vital-faq-item {
    background: #fff;
    border-radius: 22px;
    margin-bottom: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.04);
}

.vital-faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: 70px 1fr 48px;
    align-items: center;
    gap: 22px;
    padding: 18px 28px;
    cursor: pointer;
    text-align: left;
    font-size: 20px;
    font-weight: 800;
    color: #111;
}

.vital-faq-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff3f3;
    color: #ef2b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(239,43,43,.14);
}

.vital-faq-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    color: #ef2b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 22px rgba(0,0,0,.09);
    transition: .3s ease;
}

.vital-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 28px 0 120px;
    transition: max-height .45s ease, opacity .35s ease, padding .35s ease;
}

.vital-faq-answer p {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
        margin-bottom: 0px;
}

.vital-faq-item.active .vital-faq-answer {
    max-height: 600px;
    opacity: 1;
    padding-bottom: 28px;
}

.vital-faq-item.active .vital-faq-arrow {
    transform: rotate(180deg);
    background: #ef2b2b;
    color: #fff;
}

.vital-faq-item.active {
    border-color: rgba(239,43,43,.18);
}

@media (max-width: 768px) {
    .vital-faq-hero {
        min-height: 280px;
        padding: 55px 24px;
    }

    .vital-faq-hero p {
        font-size: 17px;
    }

    .vital-faq-container {
        margin-top: -35px;
        padding: 0 14px;
    }

    .vital-faq-question {
        grid-template-columns: 52px 1fr 40px;
               gap: 8px;
        padding: 10px;
        font-size: 14px;
    }

    .vital-faq-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .vital-faq-arrow {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .vital-faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .vital-faq-answer p {
        font-size: 15px;
    }
}