    /* Styles spécifiques à la page FAQ */
.faq-hero {
    background-image: url('images/faq-bg.svg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0; /* Suppression de la marge pour s'adapter à la navbar verticale */
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.7));
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.faq-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.faq-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-search {
    margin-bottom: 40px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 15px 20px;
    padding-left: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(227, 31, 31, 0.2);
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.faq-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.faq-category {
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-category:hover {
    background-color: rgba(227, 31, 31, 0.1);
    color: var(--text-primary);
    border-color: rgba(227, 31, 31, 0.2);
}

.faq-category.active {
    background-color: var(--primary-color);
    color: var(--text-primary);
}

.faq-items {
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(227, 31, 31, 0.2);
}

.faq-question {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-item.active .faq-question {
    border-bottom-color: rgba(227, 31, 31, 0.2);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.faq-answer a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.faq-not-found {
    display: none;
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-not-found.visible {
    display: block;
}

.faq-not-found h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.faq-not-found p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.faq-contact {
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.faq-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top right, rgba(227, 31, 31, 0.1), transparent 50%),
        radial-gradient(circle at bottom left, rgba(22, 66, 133, 0.1), transparent 50%);
    z-index: 0;
}

.faq-contact-content {
    position: relative;
    z-index: 1;
}

.faq-contact h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.faq-contact p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.faq-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-social a:hover {
    transform: translateY(-5px);
}

.faq-social a.discord:hover {
    background-color: #7289DA;
    color: white;
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.3);
}

.faq-social a.twitter:hover {
    background-color: #1DA1F2;
    color: white;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.faq-social a.youtube:hover {
    background-color: #FF0000;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.faq-social a.github:hover {
    background-color: #333;
    color: white;
    box-shadow: 0 5px 15px rgba(51, 51, 51, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 2.5rem;
    }
    
    .faq-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-contact {
        padding: 30px 20px;
    }
    
    .faq-contact h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .faq-hero-title {
        font-size: 2rem;
    }
    
    .faq-hero-subtitle {
        font-size: 1rem;
    }
    
    .faq-contact h2 {
        font-size: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}