/* FAQ page — public + dashboard contexts */
.faq-hero {
    background: linear-gradient(135deg, #3b1a64 0%, #512b81 100%);
    padding: 60px 0 80px 0;
    color: white;
    text-align: center;
    margin-bottom: -40px;
}

.faq-page--dashboard .faq-hero {
    border-radius: 0 0 20px 20px;
}

.faq-title {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'SolaimanLipi', sans-serif;
}

.faq-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-family: 'SolaimanLipi', sans-serif;
}

.faq-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(81, 43, 129, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(81, 43, 129, 0.05);
    position: relative;
    z-index: 10;
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(81, 43, 129, 0.1);
    background: transparent;
}

.faq-accordion .accordion-item:last-child {
    border-bottom: none;
}

.faq-accordion .accordion-button {
    position: relative;
    font-weight: 600;
    color: #3b1a64;
    padding: 20px 24px 20px 48px;
    font-size: 1.1rem;
    box-shadow: none !important;
    background-color: transparent !important;
    font-family: 'SolaimanLipi', sans-serif;
}

.faq-accordion .accordion-button::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2136e, #ff4b2b);
    box-shadow: 0 0 0 4px rgba(226, 19, 110, 0.12);
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #e82b5e;
    background-color: #fcf1f4 !important;
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px 24px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    font-family: 'SolaimanLipi', sans-serif;
}

.faq-page .list-steps {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.faq-page .list-steps li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.faq-page .list-steps li::before {
    content: "•";
    color: #e82b5e;
    font-weight: bold;
    position: absolute;
    left: 8px;
}

.btn-primary-custom {
    background: #512b81;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.btn-primary-custom:hover {
    background: #3b1a64;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(81, 43, 129, 0.2);
}

.btn-primary-custom--lg {
    padding: 12px 24px;
}

.btn-primary-custom--accent {
    background: #e82b5e;
}

.btn-primary-custom--accent:hover {
    background: #c91f4d;
}

.faq-note--success {
    color: #28a745;
    font-weight: 500;
}

.faq-note--danger,
.faq-page .text-danger.faq-note--danger {
    font-weight: 500;
}

.faq-disclaimer {
    background: #fef6f8;
    border-left: 4px solid #e82b5e;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-family: 'SolaimanLipi', sans-serif;
}

.faq-security {
    background: #f7f3fb;
    border-left: 4px solid #512b81;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-family: 'SolaimanLipi', sans-serif;
}

.faq-security__title {
    color: #512b81;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-disclaimer__title {
    color: #e82b5e;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-security__text,
.faq-page .list-steps--muted {
    color: #444;
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 40px 0 60px 0;
    }

    .faq-page--dashboard .faq-hero {
        margin-top: -15px;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-accordion .accordion-button {
        font-size: 1rem;
        padding: 15px 20px 15px 40px;
    }

    .faq-accordion .accordion-button::before {
        left: 18px;
        width: 8px;
        height: 8px;
    }

    .faq-accordion .accordion-body {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
}
