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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Work Sans", sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
}

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

header {
    background-color: #333249;
    padding: 0.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 100px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f7ab3f;
}

.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
}

.fullscreen-menu {
    display: none;
}

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

    .burger-menu {
        display: block;
    }

    .fullscreen-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #666666;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index:1;
    }

    .fullscreen-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-links {
        list-style: none;
        text-align: center;
    }

    .mobile-nav-links li {
        margin: 2rem 0;
    }

    .mobile-nav-links a {
        text-decoration: none;
        color: #ffffff;
        font-size: 2rem;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .mobile-nav-links a:hover {
        color: #f7ab3f;
    }

    /* Animation pour le burger menu */
    .burger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* HERO */

.hero {
    padding: 170px 0 80px;
    background: #f7ab3f;
    overflow: hidden;
}

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

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.2rem;
    color: #333249;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-button {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #ffffff;
    color: #f7ab3f;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button.primary:hover {
    background-color: #333249;
    color: #ffffff;
}

.cta-button.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
    background-color: #ffffff;
    color: #f7ab3f;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

@media screen and (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
    }
}

/* FIN HERO */
/* Présentation */

.services {
    padding: 80px 0;
    background-color: #ffffff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #f7ab3f;
    margin: 20px 20px 10px;
}

.service-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0 20px 20px;
}

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

/* FIN Présentation */
/* Avantages */

.key-advantages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.key-advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

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

.advantage-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.advantage-card:hover {
    border-color: #f7ab3f;
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 2.5rem;
    color: #f08526;
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: rgba(254, 203, 76, 0.1);
    margin: 0 auto 20px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: #333249;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

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

/* FIN Avantages */
/* Certifications */

.certification {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.certification h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

.qualiopi-content {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qualiopi-logo {
    flex: 0 0 200px;
    margin-right: 40px;
}

.qualiopi-logo img {
    max-width: 100%;
    height: auto;
}

.qualiopi-info {
    flex: 1;
}

.qualiopi-info h3 {
    font-size: 1.8rem;
    color: #333249;
    margin-bottom: 20px;
}

.qualiopi-info p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.qualiopi-info ul {
    list-style-type: none;
    padding: 0;
}

.qualiopi-info ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #666666;
}

.qualiopi-info ul li::before {
    content: "\2022";
    color: #f7ab3f;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

@media screen and (max-width: 768px) {
    .qualiopi-content {
        flex-direction: column;
        text-align: center;
    }

    .qualiopi-logo {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .qualiopi-info ul li {
        text-align: left;
    }
}

.verify-link {
    margin-top: 20px;
}

.verify-link a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f7ab3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.verify-link a:hover {
    background-color: #f08526;
}

/* FIN Certifications */
/* A Propos */

.about {
    padding: 80px 0;
    background-color: #ffffff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 0 0 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #f7ab3f;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-bottom: 30px;
    }
}

/* FIN A Propos */
/* Chiffres Clés */

.key-figures {
    padding: 80px 0;
    background-color: #f7ab3f;
    color: #ffffff;
}

.key-figures h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.figure-card {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.figure-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.figure-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.figure-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.figure-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.figure-card p {
    font-size: 1rem;
}

@media screen and (max-width: 1024px) {
    .figures-grid {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .figures-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .figure-card {
        padding: 15px;
    }
    
    .figure-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .figure-number {
        font-size: 2.5rem;
    }
    
    .figure-card h3 {
        font-size: 1rem;
    }
}

/* FIN Chiffres Clés */
/* Contact */

.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

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

.info-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display:flex;
    justify-content: center;
    flex-direction: column;
}

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

.info-card i {
    font-size: 2rem;
    color: #f7ab3f;
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #333249;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1rem;
    color: #666666;
}

.social-media {
    grid-column: span 2;
    text-align: center;
    margin-top: 20px;
}

.social-media a {
    color: #333249;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #f7ab3f;
}

.contact-form {
    background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #333249;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333249;
}

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

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

.submit-btn {
    background-color: #f7ab3f;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .social-media {
        grid-column: 1;
    }
}

/* FIN Contact */
/* Footer */

.footer {
    background-color: #333249;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 150px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links,
.footer-legal,
.footer-contact {
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #f7ab3f;
}

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

.footer ul li {
    margin-bottom: 8px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #f7ab3f;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-contact i {
    margin-right: 10px;
    color: #f7ab3f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social a {
    color: #ffffff;
    font-size: 1.2rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #f7ab3f;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-logo,
    .footer-links,
    .footer-legal,
    .footer-contact {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        margin-top: 15px;
    }
}

/* FIN Footer */
/* Il nous font confiance */

.trusted-by {
    padding: 80px 0;
    background-color: #ffffff;
}

.trusted-by h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

.logo-slider {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-slide {
    flex: 0 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.logo-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.logo-slide img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.logo-slide h3 {
    font-size: 1.2rem;
    color: #333249;
    margin-bottom: 10px;
}

.logo-slide p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .logo-slider {
        justify-content: center;
    }

    .logo-slide {
        flex: 0 1 350px;
    }
}

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

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f7ab3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f7ab3f;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* FIN Ils nous font confiance */
/* HERO A PROPOS */ 
.a-propos-hero {
    background-color: #f7ab3f;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    z-index:0;
}

.a-propos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7ab3f;
    z-index: 1;
}

.a-propos-hero .container {
    position: relative;
    z-index: 2;
}

.a-propos-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.a-propos-hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.a-propos-hero p {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .a-propos-hero {
        padding: 130px 0 60px;
    }

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

    .a-propos-hero p {
        font-size: 1rem;
    }
}

/* FIN HERO A PROPOS */
/* PRESENTATION A PROPOS */
.histoire-fondation {
    padding: 80px 0;
    background-color: #ffffff;
}

.histoire-fondation h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

.histoire-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.histoire-image {
    flex: 0 0 40%;
}

.histoire-image img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.histoire-text {
    flex: 1;
}

.histoire-text h3 {
    font-size: 1.8rem;
    color: #f7ab3f;
    margin-bottom: 20px;
}

.histoire-text p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.histoire-points {
    list-style-type: none;
    padding: 0;
}

.histoire-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333249;
}

.histoire-points li::before {
    content: "\2022";
    color: #f7ab3f;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

@media screen and (max-width: 768px) {
    .histoire-content {
        flex-direction: column;
    }

    .histoire-image {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    .histoire-image img {
        width:100%;
    }
}
/* FIN PRESENTATION A PROPOS */
/* Approche A PROPOS */
.notre-approche {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.notre-approche h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

.approche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.approche-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.approche-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.approche-icon {
    font-size: 3rem;
    color: #f7ab3f;
    margin-bottom: 20px;
}

.approche-card h3 {
    font-size: 1.5rem;
    color: #333249;
    margin-bottom: 15px;
}

.approche-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .approche-grid {
        grid-template-columns: 1fr;
    }
}
/* Fin Approche A PROPOS */
/* Méthodes A PROPOS */
.methodes-formation {
    padding: 80px 0;
    background-color: #ffffff;
}

.methodes-formation h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

.methodes-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.methodes-image {
    flex: 0 0 40%;
}

.methodes-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.methodes-list {
    flex: 1;
}

.methode-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.methode-number {
    font-size: 3rem;
    font-weight: bold;
    color: #f7ab3f;
    margin-right: 20px;
    line-height: 1;
}

.methode-info h3 {
    font-size: 1.3rem;
    color: #333249;
    margin-bottom: 10px;
}

.methode-info p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

@media screen and (max-width: 968px) {
    .methodes-content {
        flex-direction: column;
    }

    .methodes-image {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .methode-item {
        flex-direction: column;
    }

    .methode-number {
        margin-bottom: 10px;
    }
}
/* FIN Méthodes A PROPOS */
/* Notre engagement A PROPOS */

.engagement-qualite {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.engagement-qualite h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

.qualite-roadmap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.qualite-roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #f7ab3f;
}

.roadmap-item {
    position: relative;
    margin-bottom: 50px;
}

.roadmap-item:nth-child(odd) {
    padding-right: 50%;
}

.roadmap-item:nth-child(even) {
    padding-left: 50%;
}

.roadmap-content {
    margin: 0 15px;
    position: relative;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.roadmap-icon {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    background-color: #f7ab3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.roadmap-item:nth-child(odd) .roadmap-icon {
    right: -80px;
    transform: translate(50%, -50%);
}

.roadmap-item:nth-child(even) .roadmap-icon {
    left: -80px;
    transform: translate(-50%, -50%);
}

.roadmap-content h3 {
    font-size: 1.3rem;
    color: #333249;
    margin-bottom: 10px;
}

.roadmap-content p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .qualite-roadmap::before {
        display: none; /* Supprime la barre verticale sur mobile */
    }

    .roadmap-item {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .roadmap-content {
        margin: 0 0 30px 0;
    }

    .roadmap-icon {
        position: static;
        margin: 0 auto 20px;
        transform: none !important;
    }

    .roadmap-content {
        text-align: center;
    }
}

/* FIN Notre Engagement A PROPOS */
/* Pourquoi choisir à propos */

.pourquoi-choisir {
    padding: 80px 0;
    background-color: #FFF;
    overflow: hidden;
}

.pourquoi-choisir h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

.choix-hexagrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 900px;
}

.hexagon {
    width: 200px;
    height: 230px;
    margin: 25px 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: #f7ab3f;
    transition: all 0.3s ease;
}

.hexagon:hover {
    transform: scale(1.05);
    background-color: #666666;
}

.hexagon-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hexagon-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hexagon-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.hexagon-content p {
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .choix-hexagrid {
        max-width: 600px;
    }

    .hexagon {
        width: 150px;
        height: 173px;
        margin: 15px 5px;
    }

    .hexagon-content i {
        font-size: 2rem;
    }

    .hexagon-content h3 {
        font-size: 1rem;
    }

    .hexagon-content p {
        font-size: 0.8rem;
    }
}

/* FIN Pourquoi choisir à Propos */
/* HERO FORMATIONS */
.hero-formations {
    background-color: #f9f9f9;
    padding: 130px 0;
    overflow: hidden;
    position: relative;
    z-index:0;
}

.hero-formations::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(254, 203, 76, 0.1) 0%, rgba(254, 203, 76, 0) 70%);
    z-index: 1;
}

.hero-formations-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 0 0 50%;
}

.hero-formations h1 {
    font-size: 3.5rem;
    color: #333249;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-formations p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f7ab3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e0b43e;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-visual {
    flex: 0 0 40%;
    position: relative;
    height: 400px;
}

.hero-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #f7ab3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.icon-2 {
    top: 60%;
    left: 60%;
    animation: float 8s ease-in-out infinite;
}

.icon-3 {
    top: 40%;
    left: 40%;
    animation: float 7s ease-in-out infinite;
}

.hero-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-color: rgba(254, 203, 76, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 15s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@media screen and (max-width: 968px) {
    .hero-formations-content {
        flex-direction: column;
    }

    .hero-text, .hero-visual {
        flex: 0 0 100%;
    }

    .hero-visual {
        margin-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .hero-formations h1 {
        font-size: 2.5rem;
    }

    .hero-formations p {
        font-size: 1rem;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-formations {
        padding:150px 0;
    }

    .hero-icon {
        display:none;
    }
}
/* FIN HERO FORMATIONS */
/* Styles communs */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

/* Styles pour la section Nos domaines d'intervention */
/* Instruction message */
.instruction {
    text-align: center;
    font-size: 1.1rem;
    color: #333249;
    margin-bottom: 80px;
}

/* List items */
.domaines-intervention ul li {
    cursor: pointer;
    padding: 10px;
    margin: 5px 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.domaines-intervention h2 {
    margin-bottom:0;
}

.domaines-intervention ul li:hover {
    background-color: #f7ab3f;
    color: #ffffff;
}

/* Catégories de formation */
.formation-categories {
    margin-top: 25px;
}

.formation-category {
    margin-bottom: 25px;
    position: relative;
}

.category-title {
    font-size: 1.1rem;
    color: #333249;
    margin-bottom: 12px;
    padding-bottom: 8px;
    position: relative;
    display: flex;
    align-items: center;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #f7ab3f;
    transition: width 0.3s ease;
}

.formation-category:hover .category-title::after {
    width: 100px;
}

.category-title i {
    color: #f7ab3f;
    margin-right: 10px;
    font-size: 1.1rem;
}

.formation-category ul {
    margin-left: 10px;
}

.domaines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.domaine-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.domaine-icon {
    font-size: 3rem;
    color: #f7ab3f;
    margin-bottom: 20px;
}

.sur-mesure p {
    line-height:40px;
}

.contact-btn-sur-mesure a {
    display: block;
    width: 60%;
    margin: 20px auto;
    padding: 12px 0;
    background-color: #f7ab3f;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.contact-btn-sur-mesure a:hover {
    background:#e0b43e;
}

.domaine-card h3 {
    font-size: 1.5rem;
    color: #333249;
    margin-bottom: 5px; /* Réduit la marge en bas pour rapprocher le sous-titre */
}

.domaine-subtitle {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 15px;
    font-style: italic;
}

.domaine-card ul {
    list-style-type: none;
    padding: 0;
    margin-top: 15px; /* Ajoute un peu d'espace entre le sous-titre et la liste */
}

.domaine-card li {
    margin-bottom: 10px;
    color: #666666;
}

.domaine-card li:hover {
    cursor:pointer;
}

/* Styles pour la section Modalités de formation */
.modalites-formation {
    background-color: #f9f9f9;
}

.modalites-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.modalite-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.modalite-item:hover {
    transform: scale(1.05);
}

.modalite-icon {
    font-size: 3rem;
    color: #f7ab3f;
    margin-bottom: 20px;
}

.modalite-item h3 {
    font-size: 1.3rem;
    color: #333249;
    margin-bottom: 15px;
}

.modalite-item p {
    color: #666666;
}

/* MODAL FORMATION */
/* Modal styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 25px;
    border: none;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-flex-content {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 15px;
}

.modal-description {
    flex: 1;
    min-width: 280px;
}

.modal-calendar {
    flex: 1;
    min-width: 280px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-top: 15px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.modal-calendar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #f7ab3f;
    z-index: 10;
}

.modal-calendar iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
    background-color: transparent;
    position: relative;
    z-index: 5;
}

/* États de chargement du calendrier */
.calendar-loading, .calendar-info {
    position: absolute;
    text-align: center;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

.calendar-loading {
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.calendar-info {
    top: 55%;
    left: 0;
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Bouton CTA sous le calendrier */
.calendar-cta-button {
    display: block;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #f7ab3f;
    color: #FFF;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.calendar-cta-button:hover {
    background-color: #e8b73a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }

    #modalTitle {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .modal-btn {
        width: 100%;
        padding: 10px 15px;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .modal-calendar {
        margin-top: 25px;
    }
    
    .modal-calendar iframe {
        height: 340px;
    }
    
    .calendar-loading {
        top: 35%;
    }
    
    .calendar-info {
        top: 50%;
    }
}

/* Styles pour la section Notre approche pédagogique */
.approche-pedagogique {
    background-color: #ffffff;
}

.approche-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #f7ab3f;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #333249;
}

/* Styles responsives */
@media screen and (max-width: 768px) {
    .modalites-flex, .approche-stats {
        flex-direction: column;
    }

    .modalite-item, .stat-item {
        width: 100%;
    }
}
/* Styles communs */
.faq, .certifications {
    padding: 80px 0;
    background: #FFF;
}

.faq h2, .certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
}

/* Styles pour la section FAQ */
.faq {
    background-color: #FFF;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    color: #f7ab3f;
    margin-bottom: 15px;
}

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

/* Styles pour la section Certifications et Accréditations */
.certifications {
    background-color: #ffffff;
}

.certifications-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.certification-item {
    flex: 0 1 300px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.certification-item img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.certification-item h3 {
    font-size: 1.3rem;
    color: #333249;
    margin-bottom: 15px;
}

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

/* Styles responsives */
@media screen and (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .certification-item {
        flex: 0 1 100%;
        max-width: 300px;
    }
}

/* Styles pour la page Secrétariat */

/* Hero Section - Secrétariat */
.hero-secretariat {
    background-color: #f9f9f9;
    padding: 130px 0;
    position: relative;
    overflow: hidden;
    z-index:0;
}

.hero-secretariat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(254, 203, 76, 0.1) 0%, rgba(254, 203, 76, 0) 70%);
    z-index: 1;
}

.hero-secretariat .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 0 0 50%;
}

.hero-secretariat h1 {
    font-size: 3.5rem;
    color: #333249;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-secretariat p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f7ab3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e0b43e;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-visual {
    flex: 0 0 40%;
    position: relative;
    height: 400px;
}

.hero-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #f7ab3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.icon-2 {
    top: 60%;
    left: 60%;
    animation: float 8s ease-in-out infinite;
}

.icon-3 {
    top: 40%;
    left: 40%;
    animation: float 7s ease-in-out infinite;
}

.hero-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-color: rgba(254, 203, 76, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 15s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@media screen and (max-width: 968px) {
    .hero-secretariat {
        padding:150px 0;
    }
    .hero-secretariat .container {
        flex-direction: column;
    }

    .hero-content, .hero-visual {
        flex: 0 0 100%;
    }

    .hero-visual {
        margin-top: 50px;
        height: 300px;
    }

    .hero-icon {
        display:none;
    }

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

    .hero-secretariat p {
        font-size: 1rem;
    }
}

/* Section À Propos de Nos Services */
.secretariat-about {
    padding: 80px 0;
    background-color: #ffffff;
}

.secretariat-about h2 {
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-features {
    list-style-type: none;
    padding: 0;
}

.about-features li {
    font-size: 1rem;
    color: #333249;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-features i {
    color: #f7ab3f;
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(254, 203, 76, 0.9);
    padding: 15px;
    text-align: center;
}

.image-overlay span {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
}

@media screen and (max-width: 968px) {
    .about-content {
        flex-direction: column;
    }

    .about-text, .about-image {
        flex: 0 0 100%;
    }

    .about-image {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .secretariat-about h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-features li {
        font-size: 0.9rem;
    }
}

/* Section Nos Avantages */
.secretariat-advantages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.secretariat-advantages h2 {
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
    text-align: center;
}

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

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

.advantage-item i {
    font-size: 3rem;
    color: #f7ab3f;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 1.2rem;
    color: #333249;
}

/* Section Nos Propositions */
.secretariat-propositions {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.secretariat-propositions h2 {
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 50px;
    text-align: center;
}

.propositions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.proposition-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-header {
    background-color: #f7ab3f;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.card-header i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.card-content {
    padding: 30px;
}

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

.card-content li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #666666;
}

.card-content li i {
    color: #f7ab3f;
    margin-right: 10px;
}

.cta-button {
    display: block;
    width: 80%;
    margin: 20px auto;
    padding: 12px 0;
    background-color: #f7ab3f;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e0b43e;
}

@media screen and (max-width: 768px) {
    .secretariat-propositions h2 {
        font-size: 2rem;
    }

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

/* Section Notre Expérience */
.secretariat-experience {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.secretariat-experience h2 {
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 30px;
}

.secretariat-experience p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Pourquoi Choisir FormaSecret */
.secretariat-why-choose {
    padding: 80px 0;
    background-color: #ffffff;
}

.secretariat-why-choose h2 {
    font-size: 2.5rem;
    color: #333249;
    margin-bottom: 30px;
}

.secretariat-why-choose p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.secretariat-why-choose ul {
    list-style-type: none;
    padding: 0;
}

.secretariat-why-choose li {
    margin-bottom: 10px;
    color: #666666;
    padding-left: 20px;
    position: relative;
}

.secretariat-why-choose li::before {
    content: '•';
    color: #f7ab3f;
    position: absolute;
    left: 0;
}

/* Styles responsives */
@media screen and (max-width: 768px) {
    .propositions-flex {
        flex-direction: column;
    }

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

    .secretariat-about h2,
    .secretariat-advantages h2,
    .secretariat-propositions h2,
    .secretariat-experience h2,
    .secretariat-why-choose h2 {
        font-size: 2rem;
    }
}

.cgv-section {
    padding: 50px 0;
}

.cgv-article {
    margin-bottom: 30px;
}

.cgv-article h2 {
    color: #333;
    margin-bottom: 15px;
}

.cgv-article p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Chlorofeel */

.chlorofeel {
    color:#e0b43e;
}

.modal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.modal-btn {
    background-color: #f7ab3f;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.modal-btn:hover {
    background-color: #e0b43e;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}

.close {
    color: #333249;
    float: right;
    font-size: 24px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #f7ab3f;
    text-decoration: none;
    cursor: pointer;
}

#modalTitle {
    color: #333249;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

#modalDescription {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Note formation */
.note-formation {
    background: #f7ab3f;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(254, 203, 76, 0.3);
    border: 3px solid #fff;
    position: relative;
    overflow: hidden;
}

.note-formation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.note-formation .note-score {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.note-formation .note-label {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .note-formation {
        padding: 15px;
        margin: 15px 0;
    }
    
    .note-formation .note-score {
        font-size: 2.8rem;
    }
    
    .note-formation .note-label {
        font-size: 0.95rem;
    }
}