.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid #E6E6E6;
    transition: border-color .3s ease;
}

.faq-item:hover {
    border-color: var(--cyan);
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
}

.faq-question:focus {
    outline: none;
}

.faq-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    transition: color .3s ease;
}

.faq-item.active .faq-title,
.faq-question:hover .faq-title {
    color: var(--cyan);
}

.faq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 3px;
    background: var(--cyan);
    transform: translate(-50%, -50%);
    transition: transform .3s ease, opacity .3s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height .45s ease,
        opacity .25s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 0 28px;
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

.faq-answer-inner p {
    margin: 0 0 18px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-answer-inner ul {
    list-style: disc;
    list-style-position: outside;
    margin: 15px 0 20px;
    padding-left: 25px;
}

.faq-answer-inner ol {
    list-style: decimal;
    list-style-position: outside;
    margin: 15px 0 20px;
    padding-left: 25px;
}

.faq-answer-inner li {
    display: list-item;
    margin-bottom: 10px;
}

.faq-answer-inner ul li::marker,
.faq-answer-inner ol li::marker {
    color: #C8A45D;
}

.faq-answer-inner a {
    color: #28B8C7;
    text-decoration: none;
    transition: color .25s ease;
}

.faq-answer-inner a:hover {
    color: #C8A45D;
}

.faq-cta {
    margin: 70px auto 0;
    max-width: 760px;
    text-align: center;
    padding: 50px;
    background: #F8F5EF;
    border-radius: 20px;
}

.faq-cta h3 {
    margin-bottom: 15px;
    font-size: 32px;
}

.faq-cta p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
}

@media (max-width:768px){

    .faq-section{
        padding:60px 0;
    }

    .faq-list{
        margin-top:35px;
    }

    .faq-question{
        padding:22px 0;
    }

    .faq-title{
        font-size:18px;
    }

    .faq-answer-inner{
        font-size:16px;
    }

    .faq-cta{
        padding:35px 25px;
        margin-top:50px;
    }

    .faq-cta h3{
        font-size:26px;
    }

}