.respgrid {
    background-color: #f2f3f7;
    border-color: #f5f5f5;
    border-radius: 12px;
}

.respitem {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.respitem:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5 !important; /* Changer la couleur de fond au survol */
    color: #333; /* Changer la couleur du texte */
    transition: background-color 0.3s ease; /* Animation fluide */
}

.respitem .content {
    padding: 12px;
}

.respitem h3 {
    font-size: 16px;
    font-weight: bold;
    color: #00203d;
    margin: 5px 0;
}

.respitem p {
    font-size: 14px;
    color: #00203d;
    margin: 2px 0;
}

.respitem .title {
    font-size: 16px;
    font-weight: bold;
    color: #00203d;
    margin-top: 8px;
}

.mainbck {
    background-color: #000000;
    border-style: none;
}

.mainpanel_bck {
    background-color: #FF147E;
    border-style: none;
}

.whitepanel_bck {
    background-color: #ffffff;
    border-style: none;
}

.mainpanel {
    background-color: #000000;
    border-color:#FF147E;
    border-width: 2px;
    border-style: solid;
    border-radius: 14px;
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}

.respitem_img {
    max-width: 295px;
    max-height: 280px;
    padding-top: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-menu a {
  margin-left: 16px;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
}

.btn-nav {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #fff;
}

/* SECTIONS GÉNÉRALES */
section {
  min-height: 80vh;
  padding: 100px 16px 60px; /* 100px à cause de la navbar fixe */
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 24px;
}

/* HERO */
#hero {
  background: url('hero.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-content {
  max-width: 700px;
}

/* GRIDS SIMPLES */
#features-grid,
#stats-grid,
#testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  #features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CARDS */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* CONTACT */
#contact-form-container {
  max-width: 700px;
  margin: 0 auto;
}

/* FOOTER */
#footer {
  padding: 24px 16px;
  background: #111;
  color: #aaa;
  font-size: 0.8rem;
}

