/* style.css */

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: #E7E9E7;
  color: #1f1f1f;
  line-height: 1.6;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem 0rem 1rem;
}

.site-header {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 15rem;
}

.menu a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  color: #1e3a8a;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.hero-content {
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.offre-courte {
  background-color: #f3f4f6;
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.offre-courte h3 {
  margin-top: 0;
  font-size: 1.4rem;
  height: 5rem;
}

.offre-courte .prix {
  font-weight: bold;
  color: #1e3a8a;
}

.offre-courte .cta-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #1e3a8a;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-weight: bold;
}

.cta-button:hover {
  transform: translateY(-2px);
  background-color: #1e429f;
  transition: all 0.2s ease-in-out;
}

.offres {
  display: flex;
  gap: 1rem;
}

.description {
  height: 10rem;
}

.sous-titre-offres {
  text-align: center;
  margin-bottom: 2rem;
}

.badge-offre {
  background-color: #e0e7ff;
  color: #1e3a8a;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.3rem;
  display: inline-block;
}

.cta-vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.2rem;
}

.ligne-haut {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Page détaillées */
.section-intro {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #f3f4f6;
}

.lead {
  font-size: 1.25rem;
  margin: 1rem 0;
}

.cta-button {
  background-color: #1e3a8a;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.cta-button:hover,
.cta-button-large:hover {
  background-color: #1e429f;
  transform: translateY(-1px);
  transition: 0.2s ease-in-out;
}

.bloc {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.table-offre {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.table-offre th,
.table-offre td {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.cta-final-section {
  text-align: center;
  background-color: #1e3a8a;
  color: white;
  padding: 3rem 1rem;
  border-radius: 0.5rem;
}

.cta-button-large {
  background-color: #ffffff;
  color: #1e3a8a;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 0.4rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}


@media (max-width: 768px) {

  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .logo img {
    width: 11rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .offres {
    flex-direction: column;
    gap: 1.5rem;
  }

  .offre-courte {
    padding: 1.5rem 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .offre-courte h3 {
    font-size: 1.2rem;
    height: auto;
  }

  .description {
    height: auto;
  }

  .cta-vertical {
    align-items: stretch;
  }

  .ligne-haut {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .offre-courte .cta-button {
    width: 80%;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .container {
    padding: 1rem;
  }
}
