* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #1e293b;
    background-color: #ffffff;
  }
  
  a {
    text-decoration: none;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .nav-general {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    color: #012251;
    font-weight: 800;
    font-size: 1.3rem;
  }
  
  .nav-link {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
  }
  
  .nav-link a {
    color: #012251;
    font-weight: 600;
  }
  
  .nav-link a:hover {
    color: #fd410a;
  }
  
  .btn-nav {
    background-color: #fd410a;
    color: #ffffff !important;
    padding: 10px 16px;
    border-radius: 8px;
  }
  
  .contact-hero {
    background: linear-gradient(135deg, #ecf6ff 0%, #ffffff 45%, #f8fbff 100%);
    padding: 80px 24px 50px;
  }
  
  .contact-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-hero-content h1 {
    color: #012251;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .contact-hero-content p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .contact-section {
    padding: 30px 24px 80px;
  }
  
  .contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    align-items: start;
  }
  
  .contact-info,
  .contact-form-card {
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(1, 34, 81, 0.08);
    padding: 32px;
  }
  
  .contact-info h2,
  .contact-form-card h2 {
    color: #012251;
    font-size: 1.7rem;
    margin-bottom: 18px;
  }
  
  .contact-info p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .contact-benefits {
    list-style: none;
    margin-bottom: 28px;
  }
  
  .contact-benefits li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #334155;
    line-height: 1.6;
  }
  
  .contact-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #fd410a;
    font-size: 1.3rem;
    line-height: 1;
  }
  
  .contact-card {
    background-color: #f8fbff;
    border: 1px solid rgba(1, 34, 81, 0.08);
    border-radius: 14px;
    padding: 20px;
  }
  
  .contact-card h3 {
    color: #012251;
    margin-bottom: 8px;
  }
  
  .contact-card p {
    margin-bottom: 0;
  }
  
  .form-group {
    margin-bottom: 18px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #012251;
    font-weight: 700;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 14px 14px;
    font-size: 1rem;
    color: #0f172a;
    background-color: #ffffff;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #fd410a;
    box-shadow: 0 0 0 3px rgba(253, 65, 10, 0.12);
  }
  
  .btn-submit {
    width: 100%;
    border: none;
    background-color: #fd410a;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
  }
  
  .btn-submit:hover {
    background-color: #d93706;
    transform: translateY(-2px);
  }
  
  .alert {
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-weight: 600;
  }
  
  .alert-success {
    background-color: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
  }
  
  .alert-error {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
  }
  
  .honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
  }
  
  .site-footer {
    background-color: #012251;
    color: #ffffff;
    text-align: center;
    padding: 24px;
  }
  
  .site-footer a {
    color: #ffffff;
    text-decoration: underline;
  }
  
/* ----- 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);
}

  @media (max-width: 900px) {
    .contact-wrapper {
      grid-template-columns: 1fr;
    }
  
    .contact-hero-content h1 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 600px) {
    .nav-general {
      flex-direction: column;
      gap: 14px;
    }
  
    .nav-link {
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .contact-hero {
      padding: 60px 16px 40px;
    }
  
    .contact-section {
      padding: 20px 16px 60px;
    }
  
    .contact-info,
    .contact-form-card {
      padding: 22px;
      border-radius: 14px;
    }
  
    .contact-hero-content h1 {
      font-size: 1.7rem;
    }
  
    .contact-info h2,
    .contact-form-card h2 {
      font-size: 1.4rem;
    }
  }

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

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
    border-radius: 14px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .cookie-text h3 {
    font-size: 1.1rem;
  }

  .cookie-text p {
    font-size: 0.92rem;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column-reverse;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
    padding: 13px 16px;
  }
}