.premium-faq-wrapper-a8bdd6a0 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-card-a8bdd6a0 {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-card-a8bdd6a0:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.faq-question-a8bdd6a0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    outline: none;
}

.faq-question-text-a8bdd6a0 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    flex: 1;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-icon-wrapper-a8bdd6a0 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 40px;
    transition: all 0.3s ease;
}

.faq-icon-wrapper-a8bdd6a0 svg {
    stroke: currentColor;
    width: 20px;
    height: 20px;
}

.faq-icon-plus-a8bdd6a0,
.faq-icon-minus-a8bdd6a0 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-minus-a8bdd6a0 {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.faq-card-a8bdd6a0.is-active .faq-icon-plus-a8bdd6a0 {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-card-a8bdd6a0.is-active .faq-icon-minus-a8bdd6a0 {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer-a8bdd6a0 {
    display: none;
}

.faq-answer-inner-a8bdd6a0 {
    margin-top: 15px;
    color: #555;
    line-height: 1.6;
}
