
/* === RESET SIMPLE === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #F8F9FA;
  color: #1F3B66;
  line-height: 1.5;
  font-size: 16px;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  background: white;
  border-bottom: 2px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10); /* ombre douce */
	margin-bottom: 10px;
}
header img {
	height: 150px;
}
nav {
  display: flex;
  gap: 20px; /* Espace horizontal entre chaque lien */
  align-items: center;
}
nav a {
  position: relative;
  color: #1F3B66;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-left: 20px;}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #38B000;
  transition: width 0.3s ease;
}
nav a:not(:first-child) {
  margin-left: 20px;
}
nav a:hover {
  color: #38B000;
}

nav a:hover::after {
  width: 100%;
}
nav a.btn {
	background: #38B000;
	color: white;
	padding: 8px 16px;
	border-radius: 5px;
}
.hero {
  position: relative;
  height: 50vh;
  background-image: linear-gradient(to right, rgba(255,255,255,0.95) 60%, rgba(255,255,255,0) 100%), url(../img/image.png);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.80); /* assombrit l’image */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  color: #0072E5;
  text-align: left;
}

.hero-price {
  flex: 1;
  min-width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-card {
  background: rgba(255,255,255,0.10);
  border: 2px solid white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #0072E5;
  max-width: 450px;
}

.price-big {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
}

.price-sub {
  font-size: 1em;
  line-height: 1.4;
}

.hero-text .btn {
  background: #38B000;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}
.hero-text .btn:hover {
  background: #2c8600;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === TITRES === */
h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 15px;
}
h1 {
  font-size: 2em;
  color: #2473C1;

}
h2 {
  font-size: 1.5em;
  color: #1F3B66;
}
h3 {
  font-size: 1.2em;
}
.title-main {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2;
  color: #1F3B66; /* bleu foncé pro */
  text-align: left;
  max-width: 800px;
}

.title-main span {
  color: #38B000; /* vert gestionVO */
  display: inline-block;
  background: linear-gradient(90deg, #38B000, #1F3B66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* === TABLEAUX === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: white;
}
table th, table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}
table th {
  background-color: #e9ecef;
  font-weight: bold;
}

/* === BLOCS INFO / DOCUMENT === */
.info {
  background-color: #e6f4ea;
  border-left: 5px solid #38B000;
  padding: 15px;
  margin: 15px 0;
  border-radius: 4px;
}
.error {
  background-color: #f8d7da;
  border-left: 5px solid #dc3545;
  padding: 15px;
  margin: 15px 0;
  border-radius: 4px;
  color: #721c24;
}
.doc {
  background-color: #f1f3f5;
  border-left: 5px solid #1F3B66;
  padding: 15px;
  margin: 15px 0;
  border-radius: 4px;
}

/* === BOUTONS === */
.btn {
  display: inline-block;
  background: #38B000;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}
.btn:hover {
  background: #2c8600;
}

/* === MODALE CENTREE === */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  max-width: 90%;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}
.features-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}
.features-section h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
  width: 300px;
  max-width: 90%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  color: #1e1e1e;
  margin-bottom: 10px;
}

.feature-card p {
  color: #555;
  font-size: 0.95em;
}

.form-style input[type="text"],
.form-style input[type="email"],
.form-style select,
.form-style textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 1em;
  background-color: #fff;
}

.form-style select {
  background-color: #fff;
}

.form-style textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95em;
  margin-bottom: 20px;
}


.footer {
  color: #0072E5;
  padding: 5px 8px;
  font-size: 0.9em;
  margin-top: 50px;
	margin-bottom: 0px;

}

.footer-container {
  display: block;
  justify-content: center;
	text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}



.footer a {
  color: #41BA00;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
