/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

:root {
    --primary: #1e3a8a;
    --primary-dark: #1e40af;
    --secondary: #2563eb;
    --white: #ffffff;
    --gray-500: #4b5563;
    --radius-sm: 0.5rem;
    --radius-md: 0.8rem;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 4px 12px rgba(30, 58, 138, 0.2);
    --transition-base: all 0.3s ease;
    --transition-transform: transform 0.3s ease;
}

html, body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    font-family: "Nunito", sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-light {
    background-color: #ffffff;
    padding: 5rem 0;
}

.section-dark {
    background-color: #f3f4f6;
    padding: 5rem 0;
}

/* Navigation */
nav {
    width: 100%;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    padding: 1rem 0;
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition-transform);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition-transform);
}

.logo img:hover {
    transform: rotate(360deg);
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--white);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero section */
.hero {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(0);
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.category-btn {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Ajustement responsive pour les boutons de catégorie */
@media (max-width: 768px) {
    .category-buttons {
        flex-direction: column;
    }

    .category-btn {
        width: 100%;
        min-width: unset;
    }

    /* Ajustement des lignes de l'organigramme en mobile */
    .org-level::before,
    .org-level::after {
        display: none;
    }
}

/* Features section */
.features {
    padding: 5rem 0;
    background-color: #f3f4f6;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.feature {
    text-decoration: none;
    color: inherit;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: block;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}


.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    transition: var(--transition-transform);
}

.feature:hover img {
    transform: scale(1.1);
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.price {
    margin-top: 2rem;
    text-align: center;
}

.price a {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #1e3a8a;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.price a:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

/* Ajustement responsive */
@media (max-width: 768px) {
    .about-content img {
        max-width: 100%; /* L'image prend toute la largeur en mobile */
    }
    
    .price a {
        width: 100%; /* Le bouton prend toute la largeur en mobile */
    }
}

/* Video presentation section */
.video-presentation {
    padding: 5rem 0;
    background-color: var(--white);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-text {
    padding: 2rem;
}

.video-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.video-text p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* About page styles */
.about-history {
    padding: 3rem 0;
    background-color: var(--white);
}

.about-team {
    padding: 3rem 0;
    background-color: #f3f4f6;
}

.about-history h1,
.about-team h2.team-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    margin: auto;
    transition: transform 0.3s ease;
}

.about-content img:hover {
    transform: scale(1.02);
}

.about-text h2 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-text ul {
    list-style-type: none;
    padding-left: 0;
}

.about-text ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text ul li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Organisation Chart */
.org-chart {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.org-member {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    width: 250px;
    transition: var(--transition-base);
}

.org-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.org-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    transition: var(--transition-transform);
}

.org-member:hover img {
    transform: scale(1.1);
}

.org-member h3 {
    margin-bottom: 5px;
    color: var(--primary);
}

.org-member .role {
    color: var(--secondary);
    font-size: 0.9em;
}

.org-level {
    position: relative;
}

.org-middle {
    margin-bottom: 40px;
}

.org-middle::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background: var(--primary);
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.org-bottom {
    margin-bottom: 40px;
}

.org-bottom::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background: var(--primary);
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.org-bottom::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background: var(--primary);
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive design */
@media (max-width: 768px) {
    .about-content,
    .about-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content img {
        max-width: 100%;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .org-member {
        width: 100%;
        max-width: 300px;
    }

    .about-history h1,
    .about-team h2.team-title {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .org-level::before,
    .org-level::after {
        display: none;
    }
}

/* Ajoutez ces styles à votre fichier CSS existant */

.member-image-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  .member-image-container img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    transition: all 0.3s ease;
  }
  
  .member-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(30, 58, 138, 0.95);
    color: white;
    text-align: center;
    padding: 10px 15px;
    border-radius: 8px;
    width: max-content;
    max-width: 250px;
    font-size: 0.9rem;
    line-height: 1.4;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .member-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: rgba(30, 58, 138, 0.95) transparent transparent transparent;
  }
  
  .member-image-container:hover .member-tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 120%;
  }
  
  .member-image-container:hover img {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
  }
  
  @media (max-width: 768px) {
    .member-tooltip {
      max-width: 200px;
      font-size: 0.8rem;
      padding: 8px 12px;
    }
  }
/* Contact form */
.contact {
    padding: 5rem 0;
}

.contact h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Map container */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

/* Services section */
.services {
    padding: 5rem 0;
    background-color: #f3f4f6;
}

.services h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.mission-text {
    color: var(--gray-500);
    line-height: 1.8;
}

.mission-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.mission-text li {
    margin-bottom: 1rem;
    position: relative;
}

.mission-text li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

/* Category selection styles */
.category-select {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.category-select:hover {
    box-shadow: var(--shadow-md);
}

.category-select h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.category-btn:hover::before {
    width: 300px;
    height: 300px;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Service cards styles */
.category-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.category-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease forwards;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 100px;
}

.service-card p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Alignement des listes dans les services */
.service-details ul {
    list-style-position: inside; /* Aligne les puces avec le texte */
    padding-left: 0; /* Supprime le padding par défaut */
    margin: 1rem 0;
}

.service-details li {
    text-align: left; /* Aligne le texte à gauche */
    margin-bottom: 0.5rem;
    padding-left: 1rem; /* Ajoute un peu d'espace après la puce */
    text-indent: -1rem; /* Crée un retrait négatif pour aligner le texte */
    padding-left: 1rem; /* Compense le retrait négatif */
}

/* Ajustement du padding pour le contenu des services */
.service-details {
    padding: 0 1rem;
    text-align: left;
}

/* Ajustement des paragraphes dans les détails des services */
.service-details p {
    margin-bottom: 1rem;
    text-align: left;
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.footer-contact h3,
.footer-address h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition-base);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles pour la page énigmes */
.enigmes {
    padding: 5rem 0;
    background-color: #f3f4f6;
    min-height: calc(100vh - 200px);
}

.enigmes h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.enigme-container {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enigme-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.enigme-container h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.enigme-container input[type="text"] {
    width: 100%;
    padding: 1rem;
    margin: 1.5rem 0;
    border: 2px solid #1e3a8a;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.enigme-container input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

/* Utilisation du même style que les boutons du site */
.enigme-container button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.enigme-container button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.enigme-container button:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.response.error {
    background-color: #fee2e2;
    color: #dc2626;
}

.response.success {
    background-color: #dcfce7;
    color: #059669;
}

.attempts {
    margin-top: 1rem;
    color: #1e3a8a;
    font-size: 0.9rem;
}

#enigmeStatus {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: bold;
}

#groupWinner {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #fee2e2;
    border-radius: 0.5rem;
}

#groupWinner p {
    color: #dc2626;
    font-weight: bold;
}

.ticket {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 1rem;
    border: 2px solid #1e3a8a;
    text-align: center;
}

.ticket p {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.ticket img {
    width: 80%;
    max-width: 400px;
    height: auto;
    margin: 2rem auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ticket img:hover {
    transform: scale(1.05);
}

.ticket strong {
    display: block;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e5e7eb;
    border-radius: 0.5rem;
    color: #1e3a8a;
    font-size: 1.2rem;
}

/* Responsive Design pour la page énigmes */
@media (max-width: 768px) {
    .enigme-container {
        width: 95%;
        padding: 1.5rem;
    }

    .enigme-container h2 {
        font-size: 1rem;
    }

    .enigmes h1 {
        font-size: 2rem;
    }

    .ticket img {
        width: 95%;
    }
}

/* ... (garder les styles existants) ... */

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 500;
    transform: translateX(150%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.notification.success {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
}

.notification.error {
    background: linear-gradient(to right, #dc2626, #b91c1c);
}

.notification.show {
    transform: translateX(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(to right, var(--primary), var(--primary-dark));
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    nav ul.active {
        display: flex;
    }

    .video-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .category-buttons {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 1.5rem;
    }

    .org-member {
        max-width: 100%;
        padding: 1rem;
    }

    .org-member img {
        width: 100px;
        height: 100px;
    }

    .video-text h2 {
        font-size: 1.5rem;
    }

    .category-btn {
        width: 100%;
        text-align: center;
    }
}

/* Support page styles */
.support {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    min-height: calc(100vh - 200px);
}

.support h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1e3a8a;
}

.info-box h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-box p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.info-box li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-box li:before {
    content: "•";
    color: #1e3a8a;
    position: absolute;
    left: 0;
}

.ticket-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
}

.file-info {
    display: block;
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.field-info {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e3a8a;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Style pour les informations de gravité */
.severity-info {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
    border-left: 3px solid #1e3a8a;
}

.severity-info strong {
    color: #1e3a8a;
}

.field-example {
    font-size: 0.9em;
    color: #666;
    margin-top: 0.25rem;
}

.form-group input::placeholder {
    color: #999;
}

/* Style personnalisé pour l'input file */
input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: #1e3a8a;
    background-color: #f8fafc;
}

/* Responsive design pour la page support */
@media (max-width: 768px) {
    .support-content {
        padding: 0 1rem;
    }

    .ticket-form {
        padding: 1.5rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .info-box {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .field-info {
        font-size: 0.8rem;
    }
}