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

        body {
          background-color: #f4f4f4;
        }

        .navbar {
          display: flex;
          justify-content: space-between;
          align-items: center;
          background-color: #1e1e2f;
          padding: 15px 30px;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

       .logo {
         color: #ffffff;
         font-size: 1.5em;
         font-weight: bold;
         letter-spacing: 1px;
         height: 65px;
         width: 180px;
         overflow: hidden;
         display: flex;
         align-items: center;
       }
       
       .logo img {
         height: 100%;
         width: auto;
         display: block;
       }



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

        .nav-links li a {
          color: #ffffff;
          text-decoration: none;
          font-weight: 500;
          position: relative;
          transition: color 0.3s ease;
          font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        .nav-links li a::after {
          content: '';
          display: block;
          width: 0%;
          height: 2px;
          background-color: #8D99AE;
          transition: width 0.3s;
          position: absolute;
          bottom: -5px;
          left: 0;
        }

        .nav-links li a:hover {
          color: #8D99AE;
        }

        .nav-links li a:hover::after {
          width: 100%;
        }


        html,body{
            height: 100%;
            margin: 0;
      
        }

        .test {
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .main {
          flex: 1;
        }

        .titre {
            text-align: center;
            padding: 1rem 0.5rem;
            color: #2B2C43;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            font-weight: 100;
        }

        .titre h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

        }

        .titre p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.95;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }


        .enga {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .enga h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        .enga-intro {
            font-size: 1rem;
            color: #666;
            margin-bottom: 2rem;
            max-width: 700px;
            font-family: 'Bahnschrift';
        }


        .bouton {
            display: inline-block;
            background: #000;
            color: #fff;
            padding: 0.8rem 2rem;
            text-decoration: none;
            border-radius: 20px;
            transition: background 0.3s;
            margin-top: 1rem;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        .bouton:hover {
            background: #333;
        }

        
        .actu {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .actu {
            font-size: 2rem;
            margin-bottom: 3rem;
            text-align: center;
            color: #2c3e50;
        }

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

        .cadre{
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .cadre img {
          margin-top: 7%;
          width: 80%;
          border-radius: 4px;
        }
        
        .cadre h3 {
          font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        .cadre .lire {
          background-color: #1e1e2f;
          border-radius: 20px;
          color: #f8f9fa;
          width: fit-content;
          padding: 5px 15px;
          display: inline-block;
          text-decoration: none;
          font-weight: 500;
          font-size: 60%;
          
        }

        .cadre .lire:hover{
            background: #3e3e58;
            transition: all 0.3s ease;
        }
        .cadre::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #8D99AE;
        }

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

        .cadre h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .cadre p {
            color: #666;
            font-size: 0.95rem;
            font-family: "Bahnschrift";
        }

        footer {
            background-color: #222;
            color: #eee;
            text-align: center;
            padding: 20px;
            font-size: 0.9em;
}
