
    :root {
      --color-primary: #91bb36;
      --color-accent: #123666;
      --color-text: #000000;
      --color-bg: #ffffff;
      --color-overlay: rgba(0, 0, 0, 0.5);
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
    }

    h1, h2, h3, h4, .section-title {
      color: var(--color-accent);
      font-weight: 800;
    }

    strong {
      color: var(--color-accent);
    }

    .navbar {
      background-color: var(--color-primary);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .navbar-brand {
      color: #fff !important;
      font-weight: 800;
      letter-spacing: 0.4px;
    }

    .navbar-nav .nav-link {
      color: #fff;
      font-weight: 600;
      margin-left: 1rem;
      position: relative;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link.active {
      color:var( --color-accent);
    }



    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 100%;
    }

    .hero {
      position: relative;
      min-height: 40vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      color: #fff;
      text-align: center;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: var(--color-overlay);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 920px;
      padding: 2rem;
          padding-top: 100px;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(145, 187, 54, 0.92);
      color: #fff;
      padding: 0.65rem 1rem;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
    }

    .hero h1 {
      color: #fff;
      font-size: clamp(2rem, 5vw, 4.2rem);
      line-height: 1.15;
      margin-bottom: 1rem;
      text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .btn-primary-custom {
      background: var(--color-primary);
      border: none;
      color: #fff;
      font-weight: 700;
      padding: 0.9rem 1.5rem;
      border-radius: 999px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .btn-primary-custom:hover {
      transform:scale(1.15)!important;
      background: var(--color-primary);
      box-shadow: 0 10px 25px rgba(145, 187, 54, 0.35);
      color: #fff;
    }

    .section-padding {
      padding: 90px 0;
    }

    .presentation-card {
      background: #fff;
      border: 1px solid rgba(18, 54, 102, 0.08);
      border-radius: 24px;
      padding: 2rem;
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
      height: 100%;
    }

    .logo-box {
      background: linear-gradient(180deg, rgba(145, 187, 54, 0.12), rgba(145, 187, 54, 0.04));
      border: 2px dashed rgba(145, 187, 54, 0.45);
      border-radius: 24px;
      min-height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .logo-placeholder {
      width: 100%;
      max-width: 320px;
      aspect-ratio: 1 / 1;
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-accent);
      font-weight: 800;
      text-align: center;
      padding: 1.5rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .category-list {
      list-style: none;
      padding-left: 0;
      margin: 1.5rem 0;
    }

    .category-list li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.85rem;
      font-weight: 600;
    }

    .category-list i {
      color: var(--color-primary);
      font-size: 1.15rem;
    }

    .registration-box {
    
         border: 1px solid rgb(139 189 69);
      border-radius: 28px;
      padding: 2rem;
      box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    }

    .form-check {
      border: 1px solid rgba(18, 54, 102, 0.08);
      border-radius: 18px;
      padding: 1rem 1rem 1rem 2.5rem;
      margin-bottom: 1rem;
      background: #fff;
      transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    .form-check:hover {
      transform: translateY(-2px);
      border-color: rgba(145, 187, 54, 0.55);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    }

    .form-check-input:checked {
      background-color: var(--color-primary);
      border-color: var(--color-primary);
    }

    .form-check-label {
      cursor: pointer;
      font-weight: 600;
      color: var(--color-accent);
    }

    .form-note {
      font-size: 0.95rem;
      color: #555;
    }

    .partners-wrapper {
      position: relative;
      min-height: 720px;
      border-radius: 32px;
      background:
        radial-gradient(circle at center, rgba(145, 187, 54, 0.13), rgba(145, 187, 54, 0.02) 35%, transparent 62%),
        linear-gradient(180deg, #ffffff, #fbfcff);
      overflow: hidden;
      border: 1px solid rgba(18, 54, 102, 0.08);
    }

    .partner-logo {
      position: absolute;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      font-size: 0.9rem;
      font-weight: 700;
      color: #555;
      transition: transform 0.25s ease;
    }

    .partner-logo:hover {
      transform: translateY(-6px) scale(1.03);
    }

    .partner-logo.central {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 220px;
      height: 220px;
      border-radius: 28px;
      background: linear-gradient(180deg, #ffffff, #f4f8ec);
      border: 2px solid rgba(145, 187, 54, 0.45);
      color: var(--color-accent);
      font-size: 1.4rem;
      z-index: 5;
      box-shadow: 0 20px 45px rgba(18, 54, 102, 0.14);
    }

    .p1 { top: 9%; left: 12%; }
    .p2 { top: 14%; right: 14%; }
    .p3 { top: 30%; left: 4%; }
    .p4 { top: 33%; right: 8%; }
    .p5 { top: 52%; left: 10%; }
    .p6 { top: 57%; right: 9%; }
    .p7 { bottom: 17%; left: 8%; }
    .p8 { bottom: 9%; left: 28%; }
    .p9 { bottom: 12%; right: 28%; }
    .p10 { bottom: 18%; right: 7%; }
    .p11 { top: 8%; left: 42%; }

    .footer {
      background: #f7f9f3;
      border-top: 4px solid var(--color-primary);
      padding: 70px 0 0px;
    
    }

    .footer h4 {
      font-size: 1.15rem;
      margin-bottom: 1rem;
    }

    .footer a {
      color: #000;
      text-decoration: none;
    }

    .footer a:hover {
      color: var(--color-accent);
    }

    .footer-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .footer-list li {
      margin-bottom: 0.65rem;
    }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
    }

    .footer-contact i {
      color: var(--color-primary);
      font-size: 1.05rem;
      margin-top: 0.15rem;
    }

    .copyright {
      border-top: 1px solid rgba(0,0,0,0.08);
      margin-top: 2rem;
      padding-top: 1.2rem;
      font-size: 0.92rem;
      color: #555;
    }

    @media (max-width: 991.98px) {
      .hero {
        min-height: 78vh;
      }


    }

  
.partners-band {
    width: 100%;
    background: #ffffff;
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.partners-band__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

.partners-band__title {
    text-align: center;
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 700;
    color: #1f3c7a;
    margin-bottom: 40px;
}

.partners-band__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.partner-item {

    height: 150px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
}

.partner-item img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}


@media (max-width: 991.98px) {
    .partners-band {
        padding: 45px 0;
    }

    .partners-band__inner {
        padding: 0 20px;
    }

    .partner-item {
        width: 120px;
        height: 120px;
        padding: 14px;
    }

    .partners-band__logos {
        gap: 18px;
    }
}

@media (max-width: 575.98px) {
    .partner-item {
        width: 95px;
        height: 95px;
        padding: 10px;
    }

    .partners-band__logos {
        gap: 14px;
    }
}

.partner-item a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    text-decoration:none;
}

.ineako{
  background-color: #000;
  height: 40px;
  color:#fff;
  display: flex;
    justify-content:center;
    align-items: center;
}
.ineako img{
  height: 20px;
  padding-left: 5px;
}

.form-check span{
  display: block;
  font-size: .8rem;
}
.form-check span.condition{
  color:#b80000;
}


.person-count-box{
    display:none;
    margin-top:15px;
    padding-left:34px;
}

.person-count-box .form-control{
  /*  max-width:140px;*/
}

.category-card.is-selected .person-count-box{
    display:block;
}

.person-count-input{ width: fit-content;
    min-width: 160px;}

.participants-fields{ padding-top: 20px;}

.summary span{
  font-weight: bold;

}

.summary-total {
    display: flex;
    align-items: center;      /* centre verticalement */
    justify-content: center;  /* centre horizontalement */
   /* color: #ffffff;
    background-color: var(--color-accent);*/
    border: 1px solid var(--color-primary);
    height: 50px; 
   border-radius: 20px;
}

.summary-total p, .titleCategory p {
    margin: 0;
}

.btn-primary{
      background-color: var(--color-primary);
    border: none;
    transition: transform 0.25s ease;
    font-size: 1.2rem;
    border-radius: 20px;
    padding: 15px;

     
}
.btn-primary:hover{
  transform: scale(1.10);
    background-color:var(--color-primary);
}

.msgAjax{
  font-size: 1.5rem;
  color:var(--color-accent);
}

.titleCategory {
    margin-bottom: 20px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 20px;
   
    min-height: 50px;
    padding-bottom: 10px;
}

.final {
  font-size: 1.2rem;
}

.final span{
  color:var(--color-primary);
  font-weight: bold;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.error {
    padding-top: 150px !important;
    color: red;
    font-size: 2rem;
}