.faq-hover-container {
    width: 100%;
    font-family: inherit;
}

.faq-hover-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.faq-hover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.faq-hover-title {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    padding-right: 15px;
}

.faq-hover-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-hover-icon svg {
    fill: #666666;
    transition: fill 0.3s ease;
}

.faq-hover-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-hover-content-inner {
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
}

/* Hover & Active States */
.faq-hover-item.active {
    border-color: #0073aa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-hover-item.active .faq-hover-header {
    background-color: #f0f8ff;
}

.faq-hover-item.active .faq-hover-icon {
    transform: rotate(180deg);
}

.faq-hover-item.active .faq-hover-icon svg {
    fill: #0073aa;
}
