.nav-link {
    font-weight: 500;
    color: #333;
  }
  .nav-link:hover {
    color: #2f8f46;
  }
  .hero {
    background: url('images/fond-jardin.jpg') no-repeat center center/cover;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}


.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    color: #ffffff;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 40px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    color: white;
}

.hero .buttons a {
    display: inline-block;
    margin: 10px;
    padding: 15px 25px;
    background-color: #5a7f3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hero .buttons a:hover {
    background-color: #4a6b32;
}

.section-why {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.section-why .buttons a {
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin: 5px;
  display: inline-block;
}


.section-why .btn-primary {
  background-color: #5a7f3c;
  color: white;
  border: none;
}

.section-why .btn-primary:hover {
  background-color: #4a6b32;
}


.section-why .btn-secondary {
  background-color: #f4ebdf;
  color: #333;
  border: none;
}

.section-why .btn-secondary:hover {
  background-color: #e5d8c6;
}


.card-why {
  background-color: #5a7f3c;
  color: white;
  border-radius: 10px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-why.light {
  background-color: #f4ebdf;
  color: #333;
}

.card-why h4 {
  margin-bottom: 15px;
}

.card-why p {
  margin-bottom: 15px;
}

.card-why ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.card-why ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
}


.section-engagements {
  background-color: #fff;
  padding: 60px 20px;
}


.card-engagement {
  border-radius: 10px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-engagement h4 {
  margin-bottom: 15px;
}

.card-engagement p {
  margin-bottom: 15px;
}

.card-engagement ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.card-engagement ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.card-engagement.light {
  background-color: #f4ebdf;
  color: #333;
}

.card-engagement.dark {
  background-color: #5a7f3c;
  color: white;
}


.card-engagement .btn-primary {
  background-color: #5a7f3c;
  color: white;
  border: none;
}

.card-engagement .btn-primary:hover {
  background-color: #4a6b32;
}

.card-engagement .btn-secondary {
  background-color: #f4ebdf;
  color: #333;
  border: none;
}

.card-engagement .btn-secondary:hover {
  background-color: #e5d8c6;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-color: #5a7f3c;
  color: white;
  text-align: center;
  padding: 30px 20px;
}
.devis-section {
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.devis-section h2 {
  color: #5a7f3c;
  margin-bottom: 10px;
}

.devis-section p {
  margin-bottom: 20px;
}

.devis-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.devis-form input,
.devis-form select,
.devis-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.btn-primary {
  background-color: #5a7f3c;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #4a6b32;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f4ebdf;
  margin-top: 40px;
}


