/* Grand Salon Entrepreneurial - Styles améliorés */

/* Hero Section Moderne */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Styles pour le slider du Grand Salon */
.salon-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.salon-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.salon-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.salon-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 170, 228, 0.7) 0%, rgba(0, 88, 150, 0.8) 100%);
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

.event-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 170, 228, 0.3);
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-dark);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), #0077cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-medium);
    font-weight: 500;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 25px;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 170, 228, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 170, 228, 0.3);
    background: #0077cc;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
    border-color: var(--text-dark);
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-shape svg {
    width: 100%;
    height: auto;
}

/* Styles pour les statistiques dans la section hero */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Utilisation d'une propriété standard pour la compatibilité */
    color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}
.gse-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

/* Header principal avec image de couverture */
.gse-header {
    position: relative;
    color: white;
    padding: 0;
    overflow: hidden;
    text-align: center;
    min-height: 320px; /* Hauteur encore plus réduite */
    display: flex;
    align-items: center;
}

.gse-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Ajustement pour mieux afficher le haut de l'image */
    filter: brightness(0.9);
}

.gse-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 228, 0.5) 0%, rgba(0, 136, 204, 0.5) 100%);
    z-index: 2;
}

/* Conteneur pour le texte du header */
.gse-header-content {
    padding: 30px 20px;
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2); /* Léger fond semi-transparent pour améliorer la lisibilité */
    border-radius: 8px;
}

.gse-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    margin-bottom: 15px; /* Ajout d'une marge inférieure pour réduire l'espace entre les conteneurs */
    position: relative;
    z-index: 2;
}

.gse-badge {
    display: inline-block;
    background: #00AAE4;
    padding: 4px 10px; /* Réduction du padding */
    border-radius: 4px;
    font-size: 0.7rem; /* Réduction de la taille de police */
    font-weight: 500;
    margin-bottom: 10px; /* Réduction de la marge */
}

.gse-title {
    font-size: 1.8rem; /* Taille encore plus réduite */
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.1;
}

.gse-subtitle {
    font-size: 1rem; /* Taille réduite */
    margin-bottom: 10px; /* Marge réduite */
    opacity: 0.95;
    max-width: 550px; /* Largeur maximale réduite */
    margin-left: auto;
    margin-right: auto;
}

.gse-event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.info-card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    margin: 0;
    opacity: 0.9;
}

.gse-dates {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px; /* Padding encore plus réduit */
    border-radius: 6px; /* Border-radius réduit */
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    margin-top: 15px; /* Marge réduite */
    /* Ombre supprimée */
}

.gse-dates h3 {
    font-size: 0.95rem; /* Taille encore plus réduite */
    margin: 0 0 3px;
    font-weight: 600;
}

.gse-dates p {
    font-size: 0.8rem; /* Taille encore plus réduite */
    margin: 0;
    opacity: 0.9;
}

/* Sections de contenu */
.content-section {
    padding: 40px 0; /* Réduction du padding vertical */
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 30px; /* Réduction de la marge inférieure */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 30px; /* Réduction de la marge inférieure */
    padding-top: 10px; /* Réduction du padding supérieur */
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px; /* Réduction du padding inférieur */
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00AAE4;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00AAE4, #0088cc);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Programme en étapes */
.program-timeline {
    position: relative;
    margin: 30px 0;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00AAE4;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin: 0 20px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #00AAE4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    box-shadow: 0 0 0 4px white, 0 0 0 5px rgba(0, 170, 228, 0.3);
}

.timeline-time {
    background: #00AAE4;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.timeline-description {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #495057;
}

.timeline-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00AAE4;
    font-weight: bold;
}

/* Grille de fonctionnalités */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: white;
    padding: 20px 15px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e9ecef;
    border-top: 3px solid #00AAE4;
    transition: background-color 0.3s ease;
    position: relative;
}

.feature-card:hover {
    background-color: #f8f9fa;
}

.feature-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    background: #00AAE4;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-description {
    color: #495057;
    line-height: 1.6;
}

/* Section sponsors */
.sponsors-section {
    background: #f8f9fa;
    padding: 30px 0;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.sponsor-card {
    background: white;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

/* CTA Section */
.cta-section {
    background: #00AAE4;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.inscription-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    color: #00AAE4;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid white;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0088cc;
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.cta-button-secondary:hover {
background: rgba(255, 255, 255, 0.1);
border-color: white;
}

/* Styles pour les cartes d'information */
.info-cards-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin: 40px 0;
}

.info-card {
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 170, 228, 0.15);
}

.info-card-header {
background: linear-gradient(135deg, #00AAE4, #0088cc);
color: white;
padding: 20px;
display: flex;
align-items: center;
gap: 15px;
}

.info-card-icon {
background: rgba(255, 255, 255, 0.2);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.info-card-icon i {
font-size: 24px;
}

.info-card-header h3 {
margin: 0;
font-size: 20px;
font-weight: 600;
}

.info-card-body {
padding: 25px;
}

.feature-list {
list-style: none;
padding: 0;
margin: 0;
}

.feature-list li {
padding: 10px 0;
display: flex;
align-items: flex-start;
gap: 10px;
border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
border-bottom: none;
}

.feature-list li i {
color: #00AAE4;
font-size: 16px;
margin-top: 3px;
}

@media (max-width: 768px) {
.info-cards-container {
grid-template-columns: 1fr;
}
  
.info-card-header {
padding: 15px;
}
  
.info-card-body {
padding: 15px;
}
}

/* Section Intervenants */
.intervenants-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.intervenants-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.intervenant-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    border: 1px solid #eaeaea;
    align-items: stretch;
}

.intervenant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.intervenant-image {
    width: 150px;
    /* height: 150px; */
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    /* padding: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.intervenant-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.97);
}

.intervenant-card:hover .intervenant-image img {
    transform: scale(1.03);
    filter: brightness(1);
}

.intervenant-info {
    padding: 16px;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    border-left: 1px solid #f5f5f5;
}

.intervenant-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.intervenant-title {
    font-size: 0.9rem;
    color: #00AAE4;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.4;
}

.intervenant-bio {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.intervenant-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00AAE4;
    color: white;
}

/* Responsive styles for intervenants section */
@media (max-width: 992px) {
    .intervenants-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .intervenant-image {
        width: 130px;
        height: 130px;
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .intervenants-section {
        padding: 40px 0;
    }
    
    .intervenants-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .intervenant-image {
        width: 80px;
        height: 80px;
    }
    
    .intervenant-info {
        padding: 12px;
    }
    
    .intervenant-name {
        font-size: 1rem;
    }
    
    .intervenant-title {
        font-size: 0.85rem;
    }
    
    .intervenant-bio {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .intervenants-grid {
        grid-template-columns: 1fr;
    }
    
    .intervenant-image {
        width: 100px;
        height: 100px;
        padding: 6px;
    }
    
    .intervenant-name {
        font-size: 0.9rem;
    }
    
    .intervenant-title {
        font-size: 0.8rem;
    }
}

/* Responsive Design */
/* Desktop large screens */
@media (min-width: 1200px) {
    .gse-container {
        max-width: 1400px;
    }
    
    .gse-header {
        /* Padding réduit comme pour le mobile */
        min-height: 400px;
        background-attachment: fixed;
        background-position: center 20%;
    }
    
    .gse-header-content {
        max-width: 800px;
        padding: 30px;
        /* Ombre supprimée */
        transform: translateY(0);
        transition: transform 0.3s ease;
    }
    
    .gse-header-content:hover {
        transform: translateY(-5px);
        /* Ombre supprimée */
    }
    
    .gse-title {
        font-size: 2.5rem; /* Taille réduite */
        letter-spacing: -0.5px;
    }
    
    .gse-subtitle {
        font-size: 1.8rem;
        max-width: 700px;
    }
    
    .gse-badge {
        padding: 10px 25px;
        font-size: 1rem;
        transform: translateY(0);
        transition: transform 0.3s ease, background-color 0.3s ease;
    }
    
    .gse-badge:hover {
        transform: translateY(-3px);
        background-color: rgba(0, 170, 228, 1);
    }
    
    .content-section {
        padding: 45px 30px;
        margin-bottom: 30px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1.3rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .two-columns {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
    
    .temps-forts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .temps-fort-item {
        padding: 20px;
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .temps-fort-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .temps-fort-item h4 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .highlight-box {
        padding: 30px;
        margin: 35px auto;
        max-width: 1000px;
    }
    
    .cta-section {
        padding: 60px 40px;
    }
    
    .cta-content h2 {
        font-size: 3.5rem;
    }
    
    .cta-buttons {
        margin-top: 30px;
        gap: 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Tablets and medium screens */
@media (max-width: 968px) {
    .program-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -15px;
        right: auto;
        border-right: 15px solid white;
        border-left: none;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .gse-hero {
        padding: 50px 0 40px;
    }
    
    .temps-forts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gse-header-content {
        padding: 20px;
        margin: 0 15px;
    }
    
    .gse-title {
        font-size: 2.2rem;
    }
    
    .gse-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 30px 15px;
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .gse-event-info {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .temps-forts-grid {
        padding: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gse-hero {
        padding: 40px 0;
    }
    
    .gse-title {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .inscription-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .inscription-option {
        padding: 20px 15px;
    }
}

/* Section d'inscription */
.gse-inscription-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 45px 0;
    margin: 30px 0;
    border-radius: 8px;
}

.inscription-options {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.inscription-option {
    background: white;
    border-radius: 12px;
    padding: 25px 20px; /* Réduction du padding */
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.inscription-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.inscription-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #00AAE4, #0088cc);
}

.inscription-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00AAE4, #0088cc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.inscription-option h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.inscription-option p {
    color: #666;
    margin-bottom: 20px;
    min-height: 70px;
}

.inscription-option .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .inscription-options {
        flex-direction: column;
        align-items: center;
    }
    
    .inscription-option {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .inscription-option p {
        min-height: auto;
    }
}

/* Programme du salon styles pour PC */
.program-timeline {
    position: relative;
    max-width: 1200px;
    margin: 80px auto;
}

@media (min-width: 1200px) {
    .program-timeline::before {
        width: 6px;
        background: linear-gradient(to bottom, #00AAE4, #0088cc);
        box-shadow: 0 0 10px rgba(0, 170, 228, 0.3);
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        border: 3px solid white;
        box-shadow: 0 0 0 5px rgba(0, 170, 228, 0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .timeline-marker:hover {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(0, 170, 228, 0.3);
    }
    
    .timeline-content {
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    .timeline-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: #00AAE4;
    }
    
    .timeline-time {
        display: inline-block;
        background: rgba(0, 170, 228, 0.1);
        padding: 8px 15px;
        border-radius: 20px;
        font-weight: 500;
        margin-bottom: 15px;
        border-left: 3px solid #00AAE4;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        border-width: 15px;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
        border-width: 15px;
    }
}

/* Styles pour la timeline verticale des temps forts */
.temps-forts-grid {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 25px;
    margin-left: 20px;
    padding-left: 30px;
}

.temps-forts-grid::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00AAE4;
}

.temps-fort-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    position: relative;
    transition: background-color 0.3s ease;
}

.temps-fort-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00AAE4;
    border: 3px solid white;
    box-shadow: 0 0 0 1px #e9ecef;
}

.temps-fort-item:hover {
    background-color: #f8f9fa;
}

/* Suppression de l'effet de barre latérale animée */

.temps-fort-item h4 {
    color: #00AAE4;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.temps-fort-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00AAE4;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #00AAE4;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
    position: relative;
}

/* Suppression de l'effet de cercle décoratif */

.highlight-box p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.6;
}

/* Styles spécifiques pour la section critères */
#criteres .temps-forts-grid {
    margin-bottom: 30px;
}

/* Styles pour la grille des critères avec icônes */
.criteres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-left: 0;
    padding-left: 0;
}

.criteres-grid::before {
    display: none; /* Suppression de la ligne verticale pour la grille */
}

.critere-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.critere-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #00AAE4;
}

.critere-item::before {
    display: none; /* Suppression du point de la timeline */
}

.critere-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 170, 228, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.critere-icon svg {
    width: 24px;
    height: 24px;
    stroke: #00AAE4;
}

.critere-content {
    flex: 1;
}

.critere-item h4 {
    margin-top: 0;
    color: #00AAE4;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.critere-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00AAE4;
}

.critere-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
}

/* Styles spécifiques pour les sections qui doivent garder une grille horizontale */
.grid-layout {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 25px !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.grid-layout::before {
    display: none !important;
}

.grid-layout .temps-fort-item::before {
    display: none !important;
}

.grid-layout .temps-fort-item {
    border-left: 3px solid #00AAE4;
    margin-bottom: 0;
}

/* Styles pour la section Qui peut participer */
.participation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.participation-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.participation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #00AAE4;
}

.participation-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 170, 228, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.participation-icon i {
    font-size: 22px;
    color: #00AAE4;
}

.participation-content {
    flex: 1;
}

.participation-content h4 {
    margin-top: 0;
    color: #00AAE4;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.participation-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00AAE4;
}

.participation-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
}

.cta-container {
    text-align: center;
    margin-top: 30px;
}

/* Styles pour les boutons CTA */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00AAE4 0%, #0088cc 100%);
    color: white;
    padding: 12px 25px; /* Réduction du padding */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem; /* Réduction de la taille de police */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 170, 228, 0.2);
    margin-top: 15px; /* Réduction de la marge supérieure */
}

.cta-button:hover {
    background: white;
    color: #00AAE4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 170, 228, 0.3);
}

/* Styles pour le bouton flottant */
.floating-cta {
    position: fixed;
    bottom: 20px; /* Réduction de la distance du bas */
    right: 20px; /* Réduction de la distance de la droite */
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00AAE4 0%, #0088cc 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #00AAE4;
    box-shadow: 0 2px 8px rgba(0, 170, 228, 0.3);
}

.floating-cta-button:hover {
    background: white;
    color: #00AAE4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 170, 228, 0.4);
}

/* Styles pour la section Informations pratiques */
.info-pratiques-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.info-pratiques-section h3 {
    text-align: center;
    color: #00AAE4;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.info-pratiques-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00AAE4;
}

.info-pratiques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.info-pratique-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.info-pratique-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #00AAE4;
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 170, 228, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.info-icon i {
    font-size: 22px;
    color: #00AAE4;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    margin-top: 0;
    color: #00AAE4;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.info-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00AAE4;
}

.info-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
}

/* Styles responsifs pour la section Qui peut participer */
@media (max-width: 992px) {
    .participation-grid,
    .info-pratiques-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .participation-grid,
    .info-pratiques-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 15px;
    }
    
    .participation-card,
    .info-pratique-item {
        padding: 15px;
    }
    
    .participation-icon,
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .participation-content h4,
    .info-content h4 {
        font-size: 1rem;
    }
    
    .participation-content p,
    .info-content p {
        font-size: 0.9rem;
    }
    
    .cta-container {
        margin-top: 20px;
    }
    
    .info-pratiques-section {
        padding: 20px 15px;
        margin: 20px auto;
    }
    
    .info-pratiques-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    /* Styles responsifs pour la section hero */
    .hero-section {
        min-height: 500px;
        height: auto;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
        min-width: 100px;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Styles pour les très petits écrans */
@media (max-width: 480px) {
    .hero-section {
        min-height: 450px;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .event-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-stats {
        margin: 20px 0;
    }
    
    .stat-item {
        padding: 10px;
        min-width: 80px;
    }
    
    .stat-icon {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Styles pour les appareils mobiles */
@media (max-width: 768px) {
    .floating-cta {
        padding: 10px;
    }
    
    .floating-cta-button {
        padding: 10px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Animations */
/* Effets de survol pour les boutons sur PC */
@media (min-width: 1200px) {
    .cta-button {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 1;
    }
    
    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.5s ease;
        z-index: -1;
    }
    
    .cta-button:hover::before {
        left: 0;
    }
    
    .cta-button-primary:hover {
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    .cta-button-secondary:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }
}

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

.timeline-item {
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

/* Préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    .timeline-item {
        animation: none;
    }
}
