* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    min-height: 100vh;
  }


/*  -----  NAV BARRE  ------   */

  header {
    background-color: #f8fafc;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-general {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 0;
  }
  
  .logo img {
    width: 180px;
    height: auto;
    display: block;
  }
  
  .nav-link {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
  }
  
  .nav-link a {
    text-decoration: none;
    color: #012251;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-link a:hover {
    color: #fd410a;
  }
  
  .btn-nav {
    background-color: #fd410a;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 8px;
  }
  
  .btn-nav:hover {
    background-color: #d93706;
    color: #ffffff !important;
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: #012251;
    cursor: pointer;
  }



   /*  ------ 1er CONTAINER  -------  */

   .container-1 {
    margin: 40px 20px;
    border-radius: 10px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ecf6ff 0%, #9ad3fc 100%);
  }
  
  .article-1 {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* IMAGE */
  .img-container-1 {
    width: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  /* TEXTE */
  .article-1 div {
    max-width: 600px;
  }
  
  h1 {
    font-size: 2rem;
    color: #012251;
    margin-bottom: 15px;
  }
  
  .h2-container-1 {
    color: #012251;
    margin-top: 20px;
  }
  
  .p-container-1 {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
  
  .p-container-1 span {
    font-weight: bold;
  }

  /*   ----- 2eme CONTAINER  -----  */

  .container-2{
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  .container-2 h2{
    text-align: center;
    font-weight:bolder;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #012251;
  }

  .container-2 article{
    padding-top: 10px;
    background: linear-gradient(135deg, #aad3f7 0%, #b0d6f1 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .container-2-card{
  
    margin-top: 20px;
    text-align: center;
    padding-bottom: 30px;
  }

  .container-2-card h3{
    padding-bottom: 10px;
    color: #012251;
  }

  /*  ----- EFFET ----  */
  .reveal-upH {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal-upH.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-upP {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal-upP.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .image{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  /*   ---- IMG 2   ----*/

  .img-2,
  .img-3 {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    }

/* tailles différentes */
    
.img-2 {
  max-width: 580px;
  margin: 20px auto;
}

.img-3 {
  max-width: 580px;
  margin: 60px auto;
}


.container-channels {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f8fbff 0%, #ecf6ff 100%);
}

.channels-header {
  max-width: 820px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.channels-header h2 {
  color: #012251;
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.25;
}

.channels-header p {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.7;
}

.channels-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.channel-card {
  background-color: #ffffff;
  border: 1px solid rgba(1, 34, 81, 0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(1, 34, 81, 0.06);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(1, 34, 81, 0.09);
}

.channel-card h3 {
  color: #012251;
  font-size: 1.2rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}

.channel-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #fd410a;
  border-radius: 50%;
}

.channel-card p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
}

  .container-4{
    margin-top: 30px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ecf6ff 0%, #9ad3fc 100%);
  }

  .container-4 p{
    text-align: center;
    font-size: large;
  }

  .container-cta-final {
    padding: 80px 24px;
    background: linear-gradient(135deg, #012251 0%, #021a3a 100%);
    text-align: center;
    color: #ffffff;
  }
  
  .cta-content {
    max-width: 750px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  /* petit effet visuel sous le titre */
  .cta-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #fd410a;
    margin: 14px auto 0;
    border-radius: 2px;
  }
  
  .cta-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin: 25px 0;
  }
  
  .btn-cta-final {
    display: inline-block;
    background-color: #fd410a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.25s ease;
  }
  
  /* hover stylé */
  .btn-cta-final:hover {
    background-color: #d93706;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(253, 65, 10, 0.3);
  }

  footer{
    background-color: #9ad3fc;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer img{
    
    max-width: 200px;
    width: 100%;
    height: auto;
  }

  footer a{
    color: #012251;
  }
  footer a:hover {
    color: #fd410a;
  }

/* ----- COOKIE BANNER ----- */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: linear-gradient(135deg, #012251 0%, #021a3a 100%);
  color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(1, 34, 81, 0.25);
  padding: 22px;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cookie-text h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.cookie-text p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
}

.cookie-text a {
  display: inline-block;
  margin-top: 8px;
  color: #9ad3fc;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-text a:hover {
  color: #fd410a;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 18px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.cookie-refuse {
  background-color: #ffffff;
  color: #012251;
}

.cookie-refuse:hover {
  background-color: #ecf6ff;
  transform: translateY(-2px);
}

.cookie-accept {
  background-color: #fd410a;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #d93706;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(253, 65, 10, 0.3);
}