.vanie-faq-component {
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
    color: #fff;
    font-family: sans-serif;
}

.vanie-faq-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.vanie-faq-header {
    margin-bottom: 30px;
}

.vanie-faq-title {
    margin: 0 0 15px;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.vanie-faq-description {
    max-width: 800px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.6;
}

.vanie-faq-list {
    width: 100%;
}

.vanie-faq-item {
    margin-bottom: 14px;
    background: linear-gradient(
        180deg,
        #07142a 0%,
        #02102a 100%
    );
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
}

.vanie-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
}

.vanie-faq-question:hover {
    color: #10b7ff;
    background: transparent;

}

.vanie-faq-question-text {
    flex: 1;
}

.vanie-faq-icon {
    flex: 0 0 auto;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(16, 183, 255, 0.4);
    border-radius: 50%;

    color: #10b7ff;

    font-size: 22px;
    font-weight: 400;
    line-height: 1;

    transition: transform 0.3s ease;
}

.vanie-faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    opacity: 0;

    transition:
        grid-template-rows 0.4s ease,
        opacity 0.3s ease;
}

.vanie-faq-answer-inner {
    min-height: 0;
    overflow: hidden;

    padding: 0 26px;

    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.7;
}

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

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

.vanie-faq-answer-inner strong {
    color: #10b7ff;
    font-weight: 700;
}


/* Active FAQ */

.vanie-faq-item.active .vanie-faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.vanie-faq-item.active .vanie-faq-answer-inner {
    padding-bottom: 24px;
}

.vanie-faq-item.active .vanie-faq-icon {
    transform: rotate(45deg);
}


/* Mobile */

@media (max-width: 768px) {

    .vanie-faq-component {
        padding: 40px 15px;
    }

    .vanie-faq-title {
        font-size: 26px;
    }

    .vanie-faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .vanie-faq-answer-inner {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 15px;
        line-height: 1.6;
    }

    .vanie-faq-icon {
        width: 26px;
        height: 26px;
        font-size: 20px;
    }

}