* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header {
  background-color: #3a8456;
  padding: 20px 0;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.burger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */
.hero {
  background: url('https://images.unsplash.com/photo-1596983814144-f28fc9cb4bcf?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  color: black;
}

.hero h1,
.hero p {
  background-color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
}

.cta {
  background-color: #3a8456;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.cta:hover {
  background-color: #2e6a45;
}

/* SERVICES */
#services h2 {
  margin: 40px 0 20px;
  font-size: 2rem;
  color: #3a8456;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service {
  background-color: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #3a8456;
}

/* CONTACT */
#contact h2 {
  margin: 40px 0 20px;
  font-size: 2rem;
  color: #3a8456;
}

#contact p {
  margin: 15px 0;
  font-size: 1.1rem;
}

.phone-link {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.phone-link:hover {
  text-decoration: underline;
}
.téléphone {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

/* FOOTER */
footer {
  background-color: #e4e4e4;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #444;
  margin-top: 50px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #3a8456;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 70px;
    z-index: 1000;
  }

  .menu a {
    padding: 10px 0;
    border-bottom: 1px solid #ffffff33;
  }

  .burger {
    display: block;
  }
}