.faq-section-19e03599 {
    background-color: #0d0d0d;
    padding: 100px 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #ffffff;
}

.faq-inner-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Badge Header */
.faq-badge-wrap {
    margin-bottom: 20px;
}

.faq-badge {
    background-color: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
}

/* Title */
.faq-title {
    font-family: 'Inter Black', 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 50px 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-title .title-white {
    color: #ffffff;
}

.faq-title .title-red {
    color: #e0001b;
}

/* Accordion cards */
.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    width: 100%;
}

.faq-card-item {
    background-color: #1a1d2e;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
}

.faq-card-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-header {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 20px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Custom minimal plus/minus toggle */
.faq-toggle-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-toggle-icon .icon-line {
    position: absolute;
    background-color: #ffffff;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.faq-toggle-icon .horiz {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

.faq-toggle-icon .vert {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-card-item.active .faq-toggle-icon .vert {
    transform: rotate(90deg) scaleY(0);
}

/* Accordion Content */
.faq-content {
    display: none;
    overflow: hidden;
}

.faq-content-inner {
    padding: 0 28px 28px 28px;
    font-size: 15px;
    line-height: 1.6;
    color: #b0b3c5;
}

.faq-content-inner p {
    margin: 0;
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .faq-section-19e03599 {
        padding: 60px 16px;
    }
    .faq-header {
        padding: 20px;
    }
    .faq-content-inner {
        padding: 0 20px 20px 20px;
    }
    .faq-question-text {
        font-size: 16px;
    }
}
