.ve-partners-section {
    padding: 80px 0;
}

.ve-partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ve-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ve-partner-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #f0f0f0;
}

.ve-partner-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #222222;
}

.ve-partner-info span {
    font-size: 0.85rem;
    color: #777777;
    display: block;
}

/* FAQS STYLING */
/* Force FAQ item container to expand dynamically */
.ve-faq-list .ve-faq-item {
    height: auto !important;
    min-height: fit-content !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
}

/* Force Flexbox layout on question header */
.ve-faq-list .ve-faq-q {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px !important;
    height: auto !important;
    min-height: 60px !important;
    gap: 15px !important;
}

/* Ensure question text wraps properly without leaking out */
.ve-faq-list .ve-faq-q span {
    flex: 1 1 auto !important;
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.4 !important;
    display: block !important;
}

/* Prevent plus icon from squishing or shifting */
.ve-faq-list .ve-faq-q i {
    flex: 0 0 auto !important;
    margin-left: auto !important;
}