.faq-hero {
    padding: 160px 0 80px;
    background: #fff;
    text-align: center;
}

.faq-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: -1.5px;
}

.faq-hero p {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-section {
    padding: 60px 0 120px;
    background: #f9fafb;
    min-height: 100vh;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-group {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.faq-group-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-group-title i {
    color: #4f46e5;
    font-size: 20px;
}

.accordion-item {
    border-bottom: 1px solid #f3f4f6;
}

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

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #1f2937;
    transition: color 0.2s;
}

.accordion-header:hover {
    color: #4f46e5;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
    background: #4f46e5;
    color: #fff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-body {
    padding-bottom: 25px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 40px;
    }

    .faq-hero {
        padding: 120px 0 60px;
    }

    .faq-group {
        padding: 20px;
    }
}
