.faq-modern {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    min-height: 150px;
    position: relative;
    overflow: hidden;
}

.faq-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.faq-modern .container {
    position: relative;
    z-index: 2;
}

.faq-category-card {
    border: none;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.faq-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.faq-category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.faq-category-title {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.faq-category-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-category-badge {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
    padding: 6px 12px;
}

.search-box {
    background: white;
    border-radius: 50px;
    padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
}

.search-box input::placeholder {
    color: #adb5bd;
}

.help-card {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-top: 40px;
}

.faq-accordion-item {
    margin-bottom: 16px;
}

.faq-accordion-button {
    width: 100%;
    text-align: left;
    border: none;
    background: white;
    padding: 20px;
    font-weight: 600;
    color: #007bff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-accordion-button:hover {
    background: #f8f9fa;
    color: #0056b3;
}

.faq-accordion-button:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.faq-accordion-body {
    padding: 20px;
    color: #6c757d;
    line-height: 1.6;
    background: white;
    border-radius: 0 0 12px 12px;
    border-top: none;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 16px;
    flex-shrink: 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    color: #007bff;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #0056b3;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #6c757d;
    line-height: 1.6;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq-category-card {
        padding: 24px;
        margin-bottom: 16px;
    }
    
    .faq-category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .faq-category-title {
        font-size: 1.25rem;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 16px 16px;
        font-size: 14px;
    }
    
    .faq-accordion-button {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .faq-accordion-body {
        padding: 20px;
        font-size: 14px;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-right: 12px;
    }
}
