/* Reset et styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /*font-family: 'Arial', sans-serif;*/
           /* font-family: 'Rubik', 'BlinkMacSystemFont', -apple-system, 'Roboto', 'Lucida Sans';*/
            font-family: Inter,InterFallback,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
        }
        
         /* Navbar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
      
        .logo {
            height: 40px; /* Ajustez selon la taille de votre logo */
        }
        .logo-name {
            height: 35px; /* Ajustez selon la taille de votre logo */
            padding-left: 5px;
        }
        
        .company-name {
            font-size: 2.2rem;
  font-family: 'Orbitron', sans-serif;
            /*color: #2c3e50;*/
            font-weight: 500;
  color: #B94026; /* adapte la couleur à celle du logo */
  letter-spacing: 0.1em; /* pour un effet espacé comme dans le logo */
  text-transform: uppercase;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333333;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #007bff; /* Couleur au survol */
        }
           .nav-links a.active {
            color: #007bff;
            font-weight: 600;
        }
        
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #007bff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
            }
            
            .logo-container {
                width: 100%;
                justify-content: center;
            }
            
            
            .nav-links {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }
        }

        /* Bannière */
        .banner {
            width: 100%;
            height: calc(100vh - 80px); /* Hauteur de la fenêtre moins la navbar */
            padding: 0 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start; /* Alignement à gauche */
            background-color: #f8f9fa; /* Couleur de fond */
            background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.9)),
            url('../ressources/bureau.png'); /* Image de fond optionnelle */
            background-size: cover;
            background-position: center;
        }
        
        .banner h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #333;
            max-width: 600px;
            font-family: Arizona,ArizonaFallback,ui-serif,Georgia,Cambria,Times New Roman,Times,serif;
        }
        
        .banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
            max-width: 600px;
            line-height: 1.6;
        }
        
        .banner .cta-button {
            padding: 12px 30px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        
        .banner .cta-button:hover {
            background-color: #0056b3;
        }

        /* Styles généraux */
        .about-section {
            padding: 80px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .about-section h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 30px;
            font-family: Arizona,ArizonaFallback,ui-serif,Georgia,Cambria,Times New Roman,Times,serif;
        }

        .about-intro {
            max-width: 800px;
            margin: 0 auto 50px;
            color: #555;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .values-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .value-card {
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            border-color: #007bff;
        }

        .value-card h3 {
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: #007bff;
        }

        .value-card p {
            color: #555;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .value-card {
                min-width: 100%;
            }
        }

         .pricing-section {
            padding: 80px 20px;
            background-color: #ffffff;
        }

        .pricing-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        .pricing-section p {
            text-align: center;
            margin-bottom: 20px;
            color: #2c3e50;
            font-size: 1.1rem;
        }

        .pricing-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .pricing-card.popular {
            border: 2px solid #007bff;
            background-color: #f1f8ff;
        }

        .popular-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background-color: #007bff;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #007bff;
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
            margin: 20px 0;
            color: #2c3e50;
        }

        .price span {
            font-size: 1rem;
            color: #7f8c8d;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .pricing-features li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: #555;
        }

        .pricing-features li:before {
            content: "✓";
            color: #27ae60;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .pricing-cta {
            display: block;
            text-align: center;
            padding: 12px 0;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .pricing-cta:hover {
            background-color: #0056b3;
        }

        @media (max-width: 768px) {
            .pricing-card {
                min-width: 100%;
            }
        }

         .tech-banner {
        background-color: var(--light-color);
        padding: 20px 0 60px 0;
        overflow: hidden;
        position: relative;
    }
    
    .tech-scroll {
        display: flex;
        align-items: center;
        width: fit-content;
        animation: scroll 60s linear infinite;
    }
    
    .tech-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 30px;
        min-width: 100px;
    }
    
    .tech-item img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-bottom: 10px;
        filter: grayscale(100%) opacity(0.7);
        transition: all 0.3s ease;
    }
    
    .tech-item:hover img {
        filter: grayscale(0%) opacity(1);
    }
    
    .tech-item span {
        font-size: 0.9rem;
        color: var(--gray-color);
        text-align: center;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    @media (max-width: 768px) {
        .tech-item {
            margin: 0 15px;
            min-width: 80px;
        }
        
        .tech-item img {
            width: 40px;
            height: 40px;
        }
        
        .tech-item span {
            font-size: 0.8rem;
        }
    }

        .contact-section {
            width: 100%;
            min-height: 100vh;
            display: flex;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .contact-form-container {
            width: 66.66%;
            /*margin-left: auto;*/
            margin: auto;
            padding: 50px;
            background-color: rgba(255, 255, 255, 0.9);
        }

        .contact-form h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #333;
        }

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

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }

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

        .error-message {
            color: #dc3545;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .submit-btn {
            padding: 15px 40px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #0056b3;
        }

        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column;
            }
            
            .contact-form-container {
                width: 100%;
                margin-left: 0;
            }
        }

         /* Styles généraux */
        .why-madagascar {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #2c3e50;
            position: relative;
        }

        .section-title:after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: #007bff;
            margin: 20px auto 0;
        }

        /* Conteneur principal */
        .advantages-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            gap: 40px;
            align-items: center;
        }

        /* Colonne texte (gauche) */
        .text-column {
            flex: 1;
        }

        .advantage-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            cursor: pointer;
            transition: all 0.3s ease;
            border-left: 4px solid #007bff;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .advantage-card h3 {
            color: #007bff;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .advantage-card h3 svg {
            margin-right: 10px;
            width: 24px;
            height: 24px;
        }

        .advantage-card p {
            color: #555;
            line-height: 1.7;
            margin: 0;
        }

        /* Colonne visuelle (droite) */
        .visual-column {
            flex: 1;
            position: relative;
            height: 500px;
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .stats-bubble {
            position: absolute;
            background: white;
            border-radius: 50%;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .bubble-1 {
            width: 120px;
            height: 120px;
            top: -20px;
            left: -20px;
            background: #e3f2fd;
        }

        .bubble-2 {
            width: 140px;
            height: 140px;
            bottom: 30px;
            right: -30px;
            background: #fff8e1;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: #007bff;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #555;
            margin-top: 5px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .advantages-container {
                flex-direction: column;
            }
            
            .visual-column {
                height: 400px;
                width: 100%;
                margin-top: 40px;
            }
            
            .stats-bubble {
                display: none;
            }
        }

        /* Style de base */
        .faq-section {
            padding: 80px 20px;
            background-color: #ffffff;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .faq-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #333;
            font-family: Arizona,ArizonaFallback,ui-serif,Georgia,Cambria,Times New Roman,Times,serif;
        }
        
        /* Conteneur FAQ */
        .faq-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        /* Items FAQ */
        .faq-item {
            border-bottom: 1px solid #eaeaea;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            padding: 20px 30px;
            background-color: #f8f9fa;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 500;
            /*color: #007bff;*/
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
       /* .faq-question:hover {
            background-color: #e9f5ff;
        }*/
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            /*transition: max-height 0.5s ease-out, padding 0.3s ease;*/
            background-color: white;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px; /* Valeur suffisamment grande pour contenir le texte */
            padding: 20px 30px;
        }
        
        .faq-answer p {
            margin: 0;
            color: #555;
            line-height: 1.6;
        }

         /* Styles pour le footer */
        footer {
            background-color: #191c1e;
            color: white;
            padding: 50px 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-logo {
            flex: 1;
            padding-left: 50px;
        }

        .footer-logo img {
            height: 35px;
            width: auto;
        }

         .footer-logo p {
            color: #bdc3c7;
            padding-top: 10px;
        }

        .footer-description {
            flex: 1;
            padding-right: 20px;
        }

        .footer-menu {
            flex: 1;
            padding-left: 40px;
        }

        .footer-menu h3, .footer-notices h3, .footer-description h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-menu ul, .footer-notices ul {
            list-style: none;
            padding: 0;
        }

        .footer-menu li, .footer-notices li {
            margin-bottom: 10px;
        }

        .footer-menu a, .footer-notices a, .footer-description p {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-menu a:hover, .footer-notices a:hover {
            color: #3498db;
        }

        @media (max-width: 768px) {
            .footer-description{
                display: none;
            }
            .footer-logo, .footer-menu, .footer-notices {
                flex: 100%;
                margin-bottom: 30px;
                text-align: center;
            }
            
            .footer-logo img {
                margin: 0 auto;
                display: block;
            }
            }


    /* Styles généraux */
        .legal-section {
            padding: 60px 20px;
            max-width: 1000px;
            margin: 0 auto;
            color: #333;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .legal-section h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 40px;
            font-size: 2.2rem;
            border-bottom: 2px solid #007bff;
            padding-bottom: 10px;
            display: inline-block;
        }

        .legal-section h2 {
            color: #007bff;
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }

        .legal-section p, .legal-section ul {
            margin-bottom: 20px;
        }

        .legal-section ul {
            padding-left: 20px;
        }

        .legal-section a {
            color: #007bff;
            text-decoration: none;
        }

        .legal-section a:hover {
            text-decoration: underline;
        }

        .legal-entity {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid #007bff;
        }

        @media (max-width: 768px) {
            .legal-section {
                padding: 40px 15px;
                font-size: 1rem;
            }
            
            .legal-section h1 {
                font-size: 1.8rem;
            }
        }

        /* Styles généraux */
        .privacy-section {
            padding: 60px 20px;
            max-width: 1000px;
            margin: 0 auto;
            color: #333;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .privacy-section h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 40px;
            font-size: 2.2rem;
            border-bottom: 2px solid #007bff;
            padding-bottom: 10px;
        }

        .privacy-section h2 {
            color: #007bff;
            margin: 40px 0 20px;
            font-size: 1.5rem;
        }

        .privacy-section h3 {
            color: #2c3e50;
            margin: 25px 0 15px;
            font-size: 1.2rem;
        }

        .privacy-section p, 
        .privacy-section ul {
            margin-bottom: 20px;
        }

        .privacy-section ul {
            padding-left: 25px;
        }

        .privacy-section li {
            margin-bottom: 10px;
        }

        .privacy-section a {
            color: #007bff;
            text-decoration: none;
        }

        .privacy-section a:hover {
            text-decoration: underline;
        }

        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid #007bff;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }

        @media (max-width: 768px) {
            .privacy-section {
                padding: 40px 15px;
                font-size: 1rem;
            }
            
            .privacy-section h1 {
                font-size: 1.8rem;
            }
        }

        /* Bannière */
        .banner-jobs {
            width: 100%;
            height: calc(100vh - 400px); /* Hauteur de la fenêtre moins la navbar */
            padding: 0 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start; /* Alignement à gauche */
            background-color: #f8f9fa; /* Couleur de fond */
            background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.9)),
            url('../ressources/jobs.jpg'); /* Image de fond optionnelle */
            background-size: cover;
            background-position: center;
        }
        
        .banner-jobs h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #333;
            max-width: 600px;
            font-family: Arizona,ArizonaFallback,ui-serif,Georgia,Cambria,Times New Roman,Times,serif;
        }
        
        .banner-jobs p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
            max-width: 600px;
            line-height: 1.6;
        }

        /* Style optionnel à ajouter à votre CSS */

        .jobs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes de largeur égale */
    gap: 20px; /* Espacement entre les cartes */
    max-width: 1400px; /* Largeur maximale du conteneur */
    margin: 0 auto; /* Centrage */
    padding: 20px;
}

.job-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    background-color: #f9f9f9;
    height: 100%; /* Uniformisation des hauteurs */
    display: flex;
    flex-direction: column;
}

/* Responsive - passage en 1 colonne sur mobile */
@media (max-width: 768px) {
    .jobs-list {
        grid-template-columns: 1fr;
    }
}

.job-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: larger;
}

.job-card p {
  margin-bottom: 0.3rem;
}
 
 .job-card a {
  margin-top: 3rem;
  font-weight: bold;
  text-decoration: none;
}   

/* Bannière Recrutement */
        .recruitment-banner {
            height: 400px;
            background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1521791055366-0d553872125f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .recruitment-banner h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .recruitment-banner p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

          .recruitment-banner .cta-button {
            background-color: #007bff;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid #007bff;
        }
        
        .recruitment-banner .cta-button:hover {
            background-color: transparent;
            color: white;
            border-color: white;
        }

        /* Styles pour la section Raisons */
    .reasons-section {
        padding: 80px 5%;
        background-color: #f9f9f9;
    }
    
    .reasons-section h2 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 2.2rem;
        color: #333;
    }
    
    .reasons-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .reason-card {
        padding: 30px;
        border-radius: 10px;
    }
    
    
    .reason-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #007bff;
    }
    
    .reason-card h3 {
        color: #007bff;
        margin-bottom: 15px;
        font-size: 1.4rem;
    }
    
    .reason-card p {
        color: #666;
        line-height: 1.6;
    }

     /* Styles pour la section Offres d'emploi */
    .job-offers {
        padding: 80px 5%;
        background:linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
    }
    
    .job-offers h2 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 2.2rem;
        color: #333;
    }
    
    .offers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .offer-card {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 25px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .offer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
        border-color: #007bff;
    }

    .offer-card figure{
        display: inline-flex;
        justify-content: center;
        margin: 20px 0 30px 0;
    }

    .offer-card svg{
        width: 64px;
        height: 64px;
    }
    
    .offer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .offer-header h3 {
        color: #007bff;
        font-size: 1.3rem;
        margin-right: 15px;
    }
    
    .offer-tag {
        background-color: #e6f2ff;
        color: #007bff;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .offer-details {
        margin-bottom: 20px;
    }
    
    .offer-details p {
        margin-bottom: 8px;
        color: #555;
        font-size: 0.95rem;
    }
    
    .offer-details strong {
        color: #333;
    }
    
    .offer-link {
        display: inline-block;
        color: #007bff;
        font-weight: 600;
        text-decoration: none;
        margin-top: 10px;
        transition: all 0.3s;
    }
    
    .offer-link:hover {
        color: #004c99;
        text-decoration: underline;
    }
    
    .offer-link::after {
        content: "→";
        margin-left: 5px;
        transition: margin-left 0.3s;
    }
    
    .offer-link:hover::after {
        margin-left: 10px;
    }
    /* Styles pour la section Candidature spontanée */
    .spontaneous-application {
        padding: 80px 5%;
        text-align: center;
    }
    
    .spontaneous-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .spontaneous-application h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .spontaneous-text {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    
    .spontaneous-button {
        display: inline-block;
        background-color: white;
        color: #007bff;
        padding: 15px 40px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 2px solid white;
    }
    
    .spontaneous-button:hover {
        background-color: transparent;
        color: black;
    }
     /* Styles pour la section Profils */
    .profiles-section {
        padding: 80px 5%;
        background-color: white;
    }
    
    .profiles-container {
        display: flex;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        gap: 50px;
    }
    
    .profiles-image {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .profiles-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s;
    }
    
    .profiles-image:hover img {
        transform: scale(1.03);
    }
    
    .profiles-content {
        flex: 1;
    }
    
    .profiles-content h2 {
        color: #333;
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .profile-type {
        margin-bottom: 25px;
    }
    
    .profile-type h3 {
        color: #007bff;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .profile-type p {
        color: #555;
        line-height: 1.6;
    }
    
    .profiles-note {
        background-color: #f5f9ff;
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid #007bff;
        margin-top: 30px;
    }
    
    .profiles-note p {
        color: #333;
        margin: 0;
        line-height: 1.6;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .profiles-container {
            flex-direction: column;
        }
        
        .profiles-image, .profiles-content {
            width: 100%;
        }
    }

    /*mission*/
    /* Bannière */
        .mission-banner {
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .mission-banner h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        /* Section mission */
        .mission-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px 20px 40px;
        }
        
        .mission {
            flex: 2;
            padding-right: 30px;
        }
        
        .mission-sidebar {
            flex: 1;
            padding: 20px;
            border-radius: 8px;
        }
        
        .info-block {
            margin-bottom: 20px;
        }
        
        .info-label {
            font-weight: bold;
            color: #555;
            display: block;
            margin-bottom: 5px;
        }
        
        .info-value {
            font-size: 16px;
            color: #333;
        }
        .info-value i{
            margin-right: 8px;
        }
        
        .mission h2 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .mission p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .apply-btn {
            display: inline-block;
            font-weight: bold;
            background-color: #007bff;
            color: white;
            padding: 12px 24px;
            text-align: center;
            text-decoration: none;
            font-size: 16px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .apply-btn:hover {
            background-color: #0056b3;
        }

        /* Bannière */
        .application-banner, .contact-banner {
            height: 200px;
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .application-banner{
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }

        .contact-banner{
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }
        
        .application-banner h1, .contact-banner h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        /* Formulaire */
        .application-form, .contact-form {
            max-width: 800px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .file-upload {
            border: 2px dashed #ddd;
            padding: 40px;
            text-align: center;
            margin-bottom: 20px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .file-upload:hover {
            border-color: #3498db;
            background-color: #f8f9fa;
        }
        
        .file-upload input {
            display: none;
        }
        
        .submit-btn {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #2980b9;
        }
        
        .file-name {
            margin-top: 10px;
            font-size: 14px;
            color: #666;
        }
        
        .success-message {
            color: #28a745;
            margin-top: 20px;
            display: none;
        }
        
        .error-message {
            color: #dc3545;
            margin-top: 20px;
            display: none;
        }

        .iconcaptcha-widget {
    margin-top: 20px !important;
    margin-bottom: 20px !important;;
}

.transition-process {
    background-color: #f8f9fa;
    padding: 60px 0;
    color: #333;
}

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

.transition-process h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2.2em;
}

.transition-process .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 50px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.steps-container::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #3498db;
    z-index: 1;
}

.step {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #007bff; 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-grow: 1;
    border-top: 3px solid #007bff;
}

.step-content h3 {
    margin-top: 0;
    color: #2c3e50;
}


@media (max-width: 768px) {
    .step {
        flex-direction: column;
    }
    
    .step-number {
        align-self: center;
    }
    
    .steps-container::before {
        left: 50%;
        transform: translateX(-50%);
    }
}