.faq-hero {
    padding: 140px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.faq-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.faq-hero p {
    font-size: 16px;
    color: #555;
    position: relative;
    z-index: 1;
}

.faq-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-category-label i {
    font-size: 13px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.open {
    border-color: rgba(220, 38, 38, 0.2);
    background: rgba(220, 38, 38, 0.02);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    color: #ccc;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #fff;
}

.faq-question i {
    font-size: 12px;
    color: #444;
    transition: transform 0.3s, color 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: #dc2626;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.faq-answer a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    padding: 40px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-cta p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

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

    .faq-hero h1 {
        font-size: 32px;
    }

    .faq-content {
        padding: 0 24px 60px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px;
    }

    .faq-item.open .faq-answer {
        padding: 0 16px 16px;
    }
}
