:root {
  --ax2lan-blue:   #071d39;
  --ax2lan-gold:   #f7d000;
  --ax2lan-teal:   #54BCA4;
  --ax2lan-light:  #f7f9fc;
  --ax2lan-dark:   #1e2a3a;
}

/* Conteneur flexible */
.ax2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;

   
}

/* ===== HEADER ===== */
/* Augmente la hauteur du header */
.ax2-header {
  position: sticky;
  top: 0;
  background: var(--ax2lan-blue);
  border-bottom: 1px solid var(--ax2lan-gold);
  z-index: 1000;

  /* Hauteur augmentée */
  padding: 20px 0;
}

/* Auth & accessibilité en top-right */
.ax2-auth-container {
  position: absolute;
  top: 8px;
  right: 24px;
  display: flex;
  gap: 12px;
}
.ax2-auth-container a {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.ax2-auth-container a:hover {
  color: var(--ax2lan-teal);
}
.ax2-login-icon {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.ax2-accessibility .ax2-sup {
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 2px;
}

/* Logo */
.ax2-logo img {
  height: 48px;
}

/* Menu desktop */
.ax2-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
   margin-top:15px;
  margin-bottom:15px;
}
.ax2-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
   margin-top:15px;
  margin-bottom:15px;
}
.ax2-menu a:hover {
  color: var(--ax2lan-teal);
}
@media (max-width: 768px) {
  .ax2-menu { display: none; }
}

/* Search icon */
.ax2-search-icon {
  font-size: 1.2rem;
  color: #fff;
}

/* ===== HERO ===== */
.ax2-hero {
  background: linear-gradient(110deg, #f7f9fc 60%, #eaf3fa 100%);
  padding: 100px 0 72px 0;
  min-height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ax2-container.ax2-hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ax2-hero h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #18304b;
  margin: 0 0 20px 0;
  line-height: 1.13;
  letter-spacing: -1.5px;
  text-align: center;
}

.ax2-hero-highlight {
  background: none;
  position: relative;
  color: #0066A9;
  font-weight: 900;
}
.ax2-hero-highlight::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.5em;
  background: #f7d000;
  opacity: 0.6;
  z-index: -1;
  border-radius: 4px;
  pointer-events: none;
}

.ax2-hero-desc {
  font-size: 1.19rem;
  color: #243856;
  margin-bottom: 34px;
  line-height: 1.5;
  max-width: 540px;
  opacity: 0.94;
  text-align: center;
}

.ax2-hero-search {
  display: flex;
  align-items: stretch;   /* important : stretch pour la même hauteur */
  max-width: 500px;
  width: 100%;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(60,90,120,0.09);
  margin-top: 16px;
  padding: 0;
}
.ax2-hero-search input[type="text"] {
  border: none;
  padding: 16px 20px;
  font-size: 1.09rem;
  flex: 1;
  border-radius: 32px 0 0 32px;
  outline: none;
  background: #fff;
  height: 100%;
}
.ax2-hero-search button {
  background: #54BCA4;         /* <<< Mets ici TA couleur */
  border: none;
  color: #fff;
  padding: 0 24px;
  font-size: 1.32rem;
  font-weight: 700;
  border-radius: 0 32px 32px 0;
  cursor: pointer;
  height: %;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ax2-hero-search button:hover {
  background: #0066A9;        /* <<< Couleur au survol */
}



@media (max-width: 950px) {
  .ax2-hero h2 { font-size: 2.1rem; }
  .ax2-hero-search { max-width: 98%; }
}
@media (max-width: 600px) {
  .ax2-hero { padding: 56px 0 26px 0; min-height: unset;}
}

/* ===== FOOTER ===== :contentReference[oaicite:0]{index=0} */
.ax2-footer {
  background-color: #0a0a1a;
  color: #ffffff;
  padding: 48px 0 24px;
  font-size: 0.9rem;
}
.ax2-footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.ax2-footer-branding,
.ax2-footer-links,
.ax2-footer-contact {
  flex: 1 1 250px;
}
.ax2-footer-logo {
  width: 140px;
  margin-bottom: 12px;
}
.ax2-footer-links ul {
  list-style: none;
  padding: 0;
}
.ax2-footer-links li {
  margin-bottom: 8px;
}
.ax2-footer-links a {
  color:#E4BC29;
  text-decoration: none;
  transition: color 0.3s;
}
.ax2-footer-links a:hover {
  color: #ffffff;
}
.ax2-footer-bottom {
  text-align: center;
  margin-top: 32px;
  border-top: 1px solid #1f1f35;
  padding-top: 16px;
  font-size: 0.8rem;
  opacity: 0.7;
}
/* Arrière-plan général du footer */
.Footer__footerBg {
  background-color: #002B5B; 
  padding: 40px 0;
  color: white;
}

/* Centrage et conteneur principal */
.Footer__container1,
.Footer__footerContent {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

/* Conteneur du texte + bouton */
.Footer__footerInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: white;
}

/* Titre principal */
.Footer__footerQus {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

/* Texte sous le titre */
.Footer__footerDescription span {
  font-size: 16px;
  color: white;
}

/* Style du bouton */
.Button__footerBtn {
  background-color: #00FF6A;
  color: #002B5B;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease-in-out;
}

/* Hover du bouton */
.Button__footerBtn:hover {
  background-color: #00cc57;
  color: white;
}

/* Accessibilité : liens blancs */
.Footer__footerBtn a {
  color: white;
  text-decoration: none;
}

/* Fond blanc de la page */
body, .custom-help-center {
  background-color: #ffffff;
}

/* Conteneur principal */
.custom-help-center {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 40px 10px;
  flex-wrap: wrap;
  background: #f7f9fc;
}
/* Widget CARDS */
.custom-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(44,62,80,0.06), 0 1.5px 4px rgba(44,62,80,0.04);
  padding: 36px 30px 30px 30px;
  min-width: 320px;
  max-width: 350px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
  margin: 12px 0;
}

.custom-card:hover {
  box-shadow: 0 16px 40px rgba(44,62,80,0.12), 0 1.5px 6px rgba(44,62,80,0.08);
  transform: translateY(-6px) scale(1.025);
}

.custom-icon {
  font-size: 68px;
  color: #00c5e6;
  margin-bottom: 16px;
  margin-top: 8px;
  line-height: 1;
}

.custom-card h3 {
  color: #18304b;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 0;
}

.custom-card p {
  color: #6b7892;
  font-size: 1.05rem;
  margin: 0 0 24px 0;
}

.custom-card a,
.custom-link {
  color: #00c5e6;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.07rem;
  display: inline-block;
  margin-top: 14px;
  transition: color 0.2s;
}

.custom-card a:after,
.custom-link:after {
  content: " \2192";
  font-size: 1em;
  transition: margin-left 0.2s;
  margin-left: 5px;
}

.custom-card a:hover,
.custom-link:hover {
  color: #0096a1;
}

/* Responsive */
@media (max-width: 1000px) {
  .custom-help-center {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .custom-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

.custom-help-center a.custom-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border-radius: 16px;
}
.custom-help-center a.custom-card:focus,
.custom-help-center a.custom-card:hover {
  outline: none;
  box-shadow: 0 16px 40px rgba(44,62,80,0.12), 0 1.5px 6px rgba(44,62,80,0.08);
  transform: translateY(-6px) scale(1.025);
}
.custom-help-center, .custom-help-center * {
  background: transparent !important;
}
