.faq-section {
    margin-bottom: 48px;
}

.faq-section-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3B82F6, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid rgba(59, 130, 246, 0.3);
}

.faq-item {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.faq-item[open] {
    border-color: var(--color-success);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.faq-item summary {
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: #F8FAFC;
    list-style: none;
    position: relative;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item summary:hover {
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: #94A3B8;
    line-height: 1.7;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 12px 0 12px 24px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* FAQ-specific h1 override */
.faq-page h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.02em;
    text-transform: none;
    margin-bottom: 16px;
    line-height: 1.3;
}

.faq-intro {
    font-size: 1.1rem;
    color: #94A3B8;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-section-title {
        font-size: 1.25rem;
    }

    .faq-item summary {
        padding: 20px;
        padding-right: 50px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}