

.faq-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.faq-page {
    font-family: sans-serif;
    /*background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f172a 100%);*/
    color: #e5e7eb;
    min-height: 100vh;
    padding: 2rem 1rem;
    line-height: 1.6;
}

/* Main Container */
.faq-page__container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Section */
.faq-page__header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

    .faq-page__header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.faq-page__header-content {
    position: relative;
    z-index: 1;
}

.faq-page__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.faq-page__subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Grid Layout */
.faq-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* FAQ Sections */
.faq-section {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(15px);
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq-section__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.faq-section--healthcare .faq-section__title {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-section--business .faq-section__title {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
        border-color: rgba(139, 92, 246, 0.3);
    }

.faq-item__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

    .faq-item__question:hover {
        background: rgba(139, 92, 246, 0.05);
    }

.faq-item__question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f3f4f6;
    line-height: 1.4;
    flex: 1;
}

.faq-item__toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item--active .faq-item__toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #a855f7, #c084fc);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item--active .faq-item__answer {
    max-height: 800px;
}

.faq-item__answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #d1d5db;
    line-height: 1.7;
}

.faq-item__honest-note {
    font-style: italic;
    color: #a78bfa;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* CTA Section */
.faq-page__cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

    .faq-page__cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.faq-page__cta-content {
    position: relative;
    z-index: 1;
}

.faq-page__cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.faq-page__cta-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.faq-page__cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

    .faq-page__cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
    }

/* Responsive Design */
@media (max-width: 968px) {
    .faq-page__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-page {
        padding: 1rem 0.5rem;
    }

    .faq-page__header {
        padding: 2rem 1rem;
    }

    .faq-section {
        padding: 1.5rem;
    }

    .faq-item__question {
        padding: 1rem;
    }

    .faq-item__answer-content {
        padding: 0 1rem 1rem;
    }
}