:root {
    --primary-color: #f9a325;
    --secondary-color: #F4F4F4;
    --text-color: #333333;
    --heading-color: #1E1E1E;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #FFFFFF;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #101828;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.cta-button .btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.cta-button .btn-primary:hover {
    background-color: #e65c00;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #101828;
    margin: 5px 0;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .cta-button {
        display: none;
    }
}

/* Header & Navigation */
.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
}

.logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.rejoindre-btn {
    background: #FF8A00;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: auto;
}

.rejoindre-btn:hover {
    background-color: #ff9a20;
}

/* Buttons */
.btn-primary {
    background-color: #ff8a00;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 138, 0, 0.3);
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #ff7600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--text-color);
    border: 1px solid #E0E0E0;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #FFFFFF 55%, #feebcf 45%);
    padding: 8rem 5% 4rem;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.badge {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.badge.phone {
    top: 20%;
    left: -50px;
}

/* ===== HERO SLIDER STYLES ===== */
.hero-slider {
    position: relative;
    width: 110%; /* +10% */
    height: 407px; /* +10% */
    max-width: 572px; /* +10% */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: #f7f7f7;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.hero-badges {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.hero-badges .badge {
    pointer-events: auto;
}

@media (max-width: 768px) {
    .hero-slider {
        max-width: 102vw;
        height: 224px;
        border-radius: 12px;
    }
    .hero-slider .slide {
        border-radius: 12px;
    }
    .hero-slider .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 1.4rem;
    }
    .hero-badges {
        top: 6px;
    }
}

.hero-slider .slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-slider .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
    border-radius: 20px;
}
.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    font-size: 2rem;
    color: #FF8A00;
    cursor: pointer;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-slider .slider-arrow.prev { left: 16px; }
.hero-slider .slider-arrow.next { right: 16px; }
.hero-slider .slider-arrow:hover {
    background: #FF8A00;
    color: #fff;
}
.hero-slider .slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 12;
}
.hero-slider .dot {
    width: 11px;
    height: 11px;
    background: #fff;
    border: 2px solid #FF8A00;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.7;
    transition: background 0.3s, border 0.3s;
}
.hero-slider .dot.active,
.hero-slider .dot:hover {
    background: #FF8A00;
    border: 2px solid #fff;
    opacity: 1;
}
@media (max-width: 768px) {
    .hero-slider {
        max-width: 100vw;
        height: 220px;
        border-radius: 12px;
    }
    .hero-slider .slide {
        border-radius: 12px;
    }
    .hero-slider .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 1.4rem;
    }
}
/* ===== END HERO SLIDER STYLES ===== */


.badge.computer {
    top: 10%;
    right: -80px;
}

.badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.badge span {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

.hero-decoration {
    position: absolute;
    top: -40px;
    right: -80px;
    z-index: -1;
}

.hero-decoration img {
    width: 150px;
    box-shadow: none;
}

/* Features Section */
.features {
    background-color: #FFFFFF;
    padding: 6rem 5%;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.features .subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    background: #FFF5E6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.4;
    margin: 0;
}

/* Project Section */
.project {
    padding: 6rem 5%;
    background-color: #FFF5E6;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.project-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-content {
    padding-right: 2rem;
}

.project-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.project-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin: 1rem 0 2rem;
    font-size: 1.1rem;
}

.link-arrow:after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.link-arrow:hover:after {
    transform: translateX(5px);
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

.stat-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Formations Section */
.formations {
    padding: 4rem 0;
}

.formations h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.formation-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.formation-cards .formation-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.formation-cards .formation-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.formation-cards .formation-card-content {
    padding: 2rem;
    background: white;
}

.formation-cards .formation-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.formation-cards .formation-card-content p {
    color: #666;
    margin-bottom: 2rem;
}

.formation-cards .formation-card-content .btn-primary {
    display: inline-block;
}

/* Formations Page Styles */
.formations-page {
    padding: 7rem 0 4rem;
}

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

.formations-page h1 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.formations-page .description,
.formations-page .sous-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
    max-width: 1000px;
}

.formations-page strong {
    font-weight: 600;
}

.formations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.formation-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.formation-card h3 {
    font-size: 1.25rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.formation-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 0;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: capitalize;
}

.badge.meilleure-vente {
    background-color: var(--primary-color);
    color: white;
}

.badge.certifiant {
    background-color: #212529;
    color: white;
}

.formation-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E4E7EC;
}

.formation-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.formation-meta .meta-label {
    color: #101828;
    font-weight: 500;
}

.formation-meta .meta-value {
    color: #101828;
}

.formation-meta .badges {
    display: flex;
    gap: 0.5rem;
}

.formation-meta .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.formation-meta .badge.meilleure-vente {
    background-color: #FF8A00;
    color: white;
}

.formation-meta .badge.certifiant {
    background-color: #101828;
    color: white;
}

.contact-card {
    background: #212529;
    border-radius: 12px;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-card .btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    text-align: center;
}

/* Styles spécifiques pour la page formations */
.formations-page {
    padding: 7rem 0 4rem;
}

.formations-page .formations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.formations-page .formation-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.formations-page .formation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.formations-page .card-header {
    margin-bottom: 0.2rem;
}

.formations-page .formation-card h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    color: #101828;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.2s;
}

.formations-page .formation-card:hover h3 {
    color: #FF8A00;
}

.formations-page .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.formations-page .badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 0;
}

.formations-page .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.5;
}

.formations-page .badge.meilleure-vente {
    background-color: #FF8A00;
    color: white;
}

.formations-page .badge.certifiant {
    background-color: #101828;
    color: white;
}

.formations-page .meta-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.formations-page .meta-row {
    display: flex;
    align-items: center;
}

.formations-page .meta-row:first-child {
    justify-content: space-between;
}

.formations-page .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.formations-page .meta-label {
    color: #98A2B3;
    font-size: 0.875rem;
}

.formations-page .meta-value {
    color: #1D2939;
    font-size: 0.875rem;
    font-weight: 500;
}

.formations-page .niveau-indicator {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}

.formations-page .progress {
    width: 60px;
    height: 6px;
    background-color: #E9ECEF;
    border-radius: 3px;
    overflow: hidden;
}

.formations-page .progress-bar {
    height: 100%;
    background-color: #FF8A00;
    border-radius: 3px;
}

.formations-page .contact-card {
    background: #101828;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.formations-page .contact-card h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.formations-page .contact-card p {
    color: #E4E7EC;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.formations-page .contact-card .btn-primary {
    display: inline-block;
    background: #FF8A00;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    text-align: center;
    border: none;
    width: fit-content;
    transition: background-color 0.2s;
}

.formations-page .contact-card .btn-primary:hover {
    background-color: #E67A00;
}

@media (max-width: 992px) {
    .formations-page .formations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* Partners Section */
.partners {
    padding: 4rem 5%;
    background-color: white;
}

.partners .container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners h2 {
    text-align: center;
    color: #101828;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    padding: 0 2rem;
}

.partner-logo {
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 2rem;
    }
    
    .partner-logo {
        height: 40px;
    }
}

/* Impact Section */
.impact {
    padding: 4rem 5%;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.impact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 1rem;
}

.impact .subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.stat-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E1E1E;
    margin: 0;
}

.stat-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.impact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.impact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1E1E1E;
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

/* FAQ Section */
.faq {
    padding: 6rem 5%;
    background-color: #FFF5E6;
}

.faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E1E1E;
    text-align: center;
    margin-bottom: 1rem;
}

.faq .subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #FFF9F0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E1E1E;
    margin: 0;
    padding-right: 2rem;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #fff;
    padding-top: 4rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-section h3 {
    color: #101828;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #475467;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: #475467;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #475467;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    font-size: 0.875rem;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.footer-contact textarea {
    height: 60px;
    resize: vertical;
    min-height: 60px;
    max-height: 120px;
}

.footer-contact button[type="submit"] {
    background: #ff6b00;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.footer-contact button[type="submit"]:hover {
    background: #ff8533;
    transform: translateY(-1px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phone-numbers p,
.address p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475467;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475467;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--primary-color);
}

.phone-link i {
    color: var(--primary-color);
}

.address i {
    color: var(--primary-color);
}

.footer-bottom  {
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid #EAECF0;
}

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

.footer-bottom p {
    color: #475467;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* About Page Styles */
.about-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 8rem 5% 6rem;
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    text-align: center;
}

.about-mission {
    padding: 6rem 5%;
    background-color: #fff;
}

.about-mission h2 {
    font-size: 2.5rem;
    color: #1E1E1E;
    text-align: center;
    margin-bottom: 2rem;
}

.about-mission p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 4rem auto 0;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #1E1E1E;
    margin: 0.5rem 0;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
}

.about-values {
    padding: 6rem 5%;
    background-color: #FFF5E6;
}

.about-values h2 {
    font-size: 2.5rem;
    color: #1E1E1E;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #1E1E1E;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.about-team {
    padding: 6rem 5%;
    background-color: #fff;
}

.about-team h2 {
    font-size: 2.5rem;
    color: #1E1E1E;
    text-align: center;
    margin-bottom: 1rem;
}

.about-team > .container > p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: #FFF5E6;
    padding: 2rem;
    border-radius: 12px;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #1E1E1E;
    margin: 1rem 0;
}

.team-member p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.team img {
    width: 85%;
    height: auto;
    max-width: 85%;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

/* Why Section Styles */
.why-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.why-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1E1E1E;
    margin-bottom: 3rem;
}

.why-content {
    margin-bottom: 4rem;
}

.why-text {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.why-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    color: white;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-box p {
    font-size: 1rem;
    line-height: 1.6;
}

.training-image {
    margin: 4rem 0;
}

.training-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.advantages-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-column {
    background-color: #FFF5E6;
    padding: 2rem;
    border-radius: 12px;
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.advantage-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.advantage-header h3 {
    font-size: 1.2rem;
    color: #1E1E1E;
    margin: 0;
}

.advantage-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-column ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #333;
}

.advantage-column ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Advantages Tabs */
.advantages-tabs {
    max-width: 1200px;
    margin: 4rem auto;
}

.tabs-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    flex: 1;
    background: white;
    border: none;
    padding: 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    color: #1E1E1E;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tab-btn i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tab-btn.active {
    background: #FCEED8;
    color: #1E1E1E;
}

.tab-btn.active i {
    color: var(--primary-color);
}

.tab-content {
    padding: 2rem 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-content ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #333;
}

.tab-content ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .why-text {
        grid-template-columns: 1fr;
    }

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

    .advantages-section {
        grid-template-columns: 1fr;
    }
}

/* Container utility class */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .formation-cards {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }
}

/* Ajout des styles responsifs */
@media (max-width: 1024px) {
    .nav-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 3%;
    }
    
    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 1rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }
}

/* Styles pour les pages de détails des formations */
.formation-details {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.formation-banner {
    width: 100%;
    height: 400px;
    position: relative;
    margin: 0;
    padding: 0;
}

.formation-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.formation-container {
    width: 100%;
    max-width: 1200px;
    margin: -60px auto 0;
    padding: 2rem 5%;
    background: white;
    position: relative;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.formation-container h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.formation-intro {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.formation-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.meta-group {
    display: flex;
    gap: 3rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.meta-value {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.niveau-indicator {
    margin-top: 0.5rem;
}

.progress {
    width: 100px;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
}

.badges {
    display: flex;
    gap: 0.5rem;
}

.badge.certifiant {
    background: rgba(255, 138, 0, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-primary.inscription {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-bottom: 3rem;
}

.btn-primary.inscription:hover {
    background: #e65c00;
}

.formation-tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    color: #666;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #333;
    background: #FFF8F0;
    border-radius: 8px;
}

.tab-content {
    margin-bottom: 3rem;
}

.tab-content h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.tab-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tab-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.tab-content ul li {
    color: #666;
    margin-bottom: 0.75rem;
    position: relative;
}

.tab-content ul li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* Stats section in About page */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.stat-icon {
    background-color: #ff8a00;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .stat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stat-text {
        margin-top: 1rem;
    }
}

/* Realisations Page Styles */
.realisations-page {
    padding-top: 100px;
    background-color: white;
}

.realisations-page .hero-section {
    padding: 4rem 5%;
    background-color: white;
}

.realisations-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.realisations-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 1.5rem;
}

.realisations-page .hero-section p {
    font-size: 1.1rem;
    color: #475467;
    max-width: 900px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-item p {
    font-size: 0.875rem;
    color: #667085;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item {
        text-align: center;
    }
}

/* Testimonials */
.testimonials {
    padding: 4rem 5%;
    background-color: #FFF8F0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: #475467;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #101828;
    margin: 0;
}

.author-info p {
    font-size: 0.875rem;
    color: #475467;
    margin: 0;
}

/* Gallery */
.gallery {
    padding: 4rem 5%;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #E5E7EB;
}

.gallery-item .category {
    color: #475467;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding: 1rem 1rem 0;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #101828;
    margin: 1rem;
    padding: 0;
    line-height: 1.4;
}

.gallery-item .arrow-link {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
    padding: 1rem;
    margin-top: auto;
    align-self: flex-start;
    transition: transform 0.3s;
}

.gallery-item .arrow-link:hover {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Partners */
.partners {
    padding: 4rem 5%;
    background-color: white;
}

.partners h2 {
    text-align: center;
    font-size: 1.5rem;
    color: #101828;
    margin-bottom: 3rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partners-grid img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        gap: 2rem;
    }

    .partners-grid img {
        height: 40px;
    }
}

/* Alumni Page Styles */
.alumni-page {
    padding-top: 100px;
    min-height: calc(100vh - 100px);
    background-color: white;
}

.alumni-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.alumni-hero {
    background-color: #101828;
    color: white;
    padding: 4rem 5%;
}

.alumni-hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.alumni-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.alumni-hero p {
    color: #E4E7EC;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    letter-spacing: 0.2px;
}

.alumni-filters {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: #E4E7EC;
    font-size: 0.875rem;
    font-weight: 500;
}

.search-input {
    position: relative;
    width: 300px;
}

.search-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #475467;
}

.search-input input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    font-size: 0.875rem;
    background-color: white;
}

.filter-group select {
    padding: 0.75rem 2rem 0.75rem 1rem;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    font-size: 0.875rem;
    background-color: white;
    color: #101828;
    min-width: 200px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23101828' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

@media (max-width: 1024px) {
    .alumni-filters {
        flex-wrap: wrap;
    }

    .filter-group {
        flex: 1 1 calc(50% - 1rem);
    }

    .search-input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .alumni-filters {
        flex-direction: column;
        gap: 1.5rem;
    }

    .filter-group {
        width: 100%;
    }

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

/* Alumni Cards Section */
.alumni-cards {
    padding: 4rem 5%;
    background-color: white;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.alumni-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #E5E7EB;
}

.card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #F9FAFB;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.alumni-info {
    margin-bottom: 1rem;
}

.formation-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: white;
    color: #111827;
    border: 1px solid #111827;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

.year-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #111827;
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.card-content p {
    color: #4B5563;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .alumni-cards {
        padding: 2rem 5%;
    }

    .card-image {
        height: 250px;
    }
}

.alumni-info {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: #475467;
    font-size: 1rem;
    grid-column: 1 / -1;
}

/* Amélioration de l'accessibilité des sélecteurs */
select:focus, 
.search-input input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -1px;
}

/* Style pour l'image par défaut */
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Privilégie le haut de l'image pour éviter de couper la tête */
    transition: transform 0.3s ease;
}

.alumni-card:hover .card-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .alumni-hero p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
}

/* Styles communs pour les nouvelles pages */
.blog-page,
.contact-page,
.faq-page,
.inscription-page,
.temoignages-page,
.partenaires-page,
.carriere-page {
    padding-top: 100px;
    min-height: calc(100vh - 100px);
    background-color: white;
}

.blog-page .container,
.contact-page .container,
.faq-page .container,
.inscription-page .container,
.temoignages-page .container,
.partenaires-page .container,
.carriere-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

@media (max-width: 768px) {
    .blog-page,
    .contact-page,
    .faq-page,
    .inscription-page,
    .temoignages-page,
    .partenaires-page,
    .carriere-page {
        padding-top: 80px;
    }
}

/* Styles pour le blog */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.blog-header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #111827;
}

.editor-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.post-title-input {
    width: 100%;
    padding: 0.75rem;
    font-size: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.editor-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.blog-post {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.blog-post h2 {
    color: #111827;
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-date,
.post-author {
    color: #6b7280;
    font-size: 0.875rem;
}

.delete-post-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.delete-post-btn:hover {
    background-color: #fee2e2;
}

.delete-post-btn i {
    font-size: 1rem;
}

.post-content {
    color: #374151;
    line-height: 1.6;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1rem 0;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.primary-btn {
    background-color: #111827;
    color: white;
}

.primary-btn:hover {
    background-color: #1f2937;
}

.secondary-btn {
    background-color: #e5e7eb;
    color: #111827;
}

.secondary-btn:hover {
    background-color: #d1d5db;
}

@media (max-width: 768px) {
    .blog-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .blog-post {
        padding: 1.5rem;
    }

    .blog-post h2 {
        font-size: 1.5rem;
    }
}

/* Style Netflix pour les articles */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    padding: 1.25rem 0;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05),
                0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 340px;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1),
                0 6px 6px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    height: 140px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 140px);
    position: relative;
    gap: 0.5rem;
}

.blog-card h2 {
    font-size: 1rem;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.8em; /* 2 lignes × 1.4 line-height */
}

.post-excerpt {
    color: #666;
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    max-height: 3em; /* 2 lignes × 1.5 line-height */
}

.read-more-btn {
    background: linear-gradient(135deg, #ff4b1f, #ff9068);
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(255, 75, 31, 0.2);
    width: 100%;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #ff3d00, #ff7043);
    box-shadow: 0 4px 12px rgba(255, 75, 31, 0.3);
}

.read-more-btn:active {
    transform: translateY(1px);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin: 0;
    flex-wrap: wrap;
}

.post-date,
.post-author {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.6875rem;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Modal pour l'article complet */
.post-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.post-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.post-modal-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.post-modal-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.post-modal-header h1 {
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

.post-modal-body {
    padding: 2rem;
}

.post-cover-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Style du bouton de suppression sur la carte */
.blog-card .delete-post-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-card .delete-post-btn:hover {
    background-color: #fee2e2;
}

/* Styles pour le bouton de contact circulaire */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-circle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ff8a00;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 138, 0, 0.3);
    text-decoration: none;
}

.contact-circle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.4);
    background: #ff7600;
}

.contact-circle-btn i {
    color: white;
    font-size: 1rem;
    position: absolute;
    transition: all 0.3s ease;
}

.contact-circle-btn .icon-group {
    position: relative;
    width: 24px;
    height: 20px;
}

.contact-circle-btn i.fa-phone {
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-circle-btn i.fa-envelope {
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-circle-btn:hover i.fa-phone {
    left: -8px;
}

.contact-circle-btn:hover i.fa-envelope {
    right: -8px;
}

@media (max-width: 768px) {
    .header-actions {
        gap: 1rem;
    }

    .contact-circle-btn {
        width: 40px;
        height: 40px;
    }

    .contact-circle-btn .icon-group {
        width: 20px;
        height: 16px;
    }

    .contact-circle-btn i {
        font-size: 0.875rem;
    }
}

/* Styles pour la page d'inscription */
.inscription-page {
    padding-top: 120px;
    background-color: white;
}

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

.inscription-page h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.inscription-page .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.inscription-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff8a00;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.formation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.formation-option {
    position: relative;
}

.formation-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.formation-option label {
    display: block;
    cursor: pointer;
}

.formation-option .formation-card {
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.formation-option input[type="radio"]:checked + label .formation-card {
    border-color: #ff8a00;
    box-shadow: 0 0 15px rgba(255, 138, 0, 0.2);
}

.formation-option .formation-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.formation-option .formation-content {
    padding: 20px;
}

.formation-option h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.formation-details {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.formation-details li {
    color: #666;
    font-size: 0.9em;
}

.formation-details i {
    color: #ff8a00;
    margin-right: 5px;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.form-actions {
    text-align: center;
}

.form-actions button {
    padding: 15px 40px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .form-grid,
    .formation-options {
        grid-template-columns: 1fr;
    }

    .inscription-form {
        padding: 20px;
    }
}

/* Stats section in About page */
.stats-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
    max-width: 800px;
}

.stats-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.stats-icon {
    background-color: #ff8a00;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon i {
    color: white;
    font-size: 20px;
}

.stats-box p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding-top: 8px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-box {
    text-align: center;
}

.stats-icon {
    background-color: #ff8a00;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stats-icon i {
    color: white;
    font-size: 24px;
}

.stats-box p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #333;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Stats Black Box */
.stats-black-box {
    background-color: #000;
    padding: 60px 40px;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 8px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stats-box {
    text-align: center;
}

.stats-icon {
    background-color: #ff8a00;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stats-icon i {
    color: white;
    font-size: 24px;
}

.stats-box p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: white;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-black-box {
        margin: 20px;
        padding: 30px 20px;
    }
}

/* Page inscription */
.inscription-page {
    padding-top: 120px;
    background-color: white;
}

/* Cartes de formation dans le formulaire */
.formation-choice .formation-card {
    max-height: 160px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.formation-choice .formation-card .card-content {
    padding: 1rem;
}

.formation-choice .formation-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.formation-choice .formation-card p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Styles pour le formulaire d'inscription */
.inscription-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.inscription-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.inscription-form input,
.inscription-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.inscription-form input:focus,
.inscription-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.1);
}

.inscription-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.inscription-form button[type="submit"]:hover {
    background: var(--primary-color-dark);
}

/* Styles pour les messages de retour */
#formMessage {
    margin: 1rem 0;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert i {
    font-size: 1.2rem;
}

.alert-info {
    background-color: #e3f2fd;
    color: #0d47a1;
    border: 1px solid #bbdefb;
}

.alert-success {
    background-color: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #c8e6c9;
}

.alert-danger {
    background-color: #ffebee;
    color: #b71c1c;
    border: 1px solid #ffcdd2;
}

/* Animation pour le spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Styles pour la section inscription */
#inscription {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

#inscription h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Responsive design */
@media (max-width: 768px) {
    .inscription-form {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* Formulaire de contact dans le footer */
.footer-contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.form-group.half {
    flex: 1;
    min-width: 0; /* Pour éviter le débordement */
}

.footer-contact .form-group input,
.footer-contact .form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 4px;
}

.footer-contact .form-group input::placeholder,
.footer-contact .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact .form-group textarea {
    height: 100px;
    resize: vertical;
}

.footer-contact button[type="submit"] {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-contact button[type="submit"]:hover {
    background: var(--primary-color-dark);
}

/* Formulaire de contact dans le footer */
.footer-contact form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.form-group.half {
    flex: 1;
    min-width: 0; /* Pour éviter le débordement */
}

.footer-contact .form-group input,
.footer-contact .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}

.footer-contact .form-group input::placeholder,
.footer-contact .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact .form-group input:focus,
.footer-contact .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.footer-contact .form-group textarea {
    height: 100px;
    resize: vertical;
    min-height: 100px;
    max-height: 120px;
}

.footer-contact button[type="submit"] {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.footer-contact button[type="submit"]:hover {
    background: var(--primary-color-dark);
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-group.half {
        width: 100%;
    }
}

html {
    scroll-behavior: smooth;
}

/* Styles pour le formulaire d'inscription */
.inscription-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
}

.inscription-form .radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.inscription-form .radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.inscription-form .radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.inscription-form select:focus,
.inscription-form input[type="radio"]:focus {
    outline: 2px solid #FF8A00;
    border-color: #FF8A00;
}

.inscription-form select option {
    padding: 10px;
}
