.questions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.questions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.questions-header h1 {
    font-size: 2.5rem;
    color: #ff1e00;
    margin-bottom: 0.5rem;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 30, 0, 0.4);
    background: rgba(255, 30, 0, 0.02);
    transform: translateX(5px);
}

.faq-question {
    color: #ff1e00;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.5rem;
}

.faq-answer {
    color: #ccc;
    line-height: 1.6;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #ff1e00;
    box-shadow: 0 10px 30px rgba(255, 30, 0, 0.3);
    background: rgba(255, 30, 0, 0.05);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.btn-admin-faq {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
}

.btn-admin-faq:hover {
    background: #ff1e00;
}

/* Edit Table */
.faq-edit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-faq {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    width: 100%;
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.faq-table th,
.faq-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-table th {
    background: rgba(255, 30, 0, 0.2);
    color: #ff1e00;
}

.faq-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
}

/* Modal */
.modal-faq {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-faq-content {
    background: #111;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    border: 2px solid #ff1e00;
}

.modal-faq-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}