  body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
    }

    /* Header */
    header {
      position: relative;
      height: 70vh;
      background: url(./image2.jpg) no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
     margin: 20px;
     border-radius: 30px;
    }

    header::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      border-radius: 30pX;
    }

    header .content {
      position: relative;
      z-index: 2;
    }

    header h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.2rem;
    }

    /* Section Présentation */
    .presentation {
      padding: 20px 10px;
      text-align: center;
      background: linear-gradient(180deg,#566670 ,#055160);
      color: #FFF;
    }

    .presentation h2 {
      margin-bottom: 15px;
    }

    /* Section Activités */
    .activities {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      padding: 50px 20px;
      background: white;
    }

    .activity {
      width: 30%;
      min-width: 250px;
      margin-bottom: 20px;
      text-align: center;
    }

    .activity img {
      width: 100%;
      border-radius: 10px;
    }

    .activity p {
      margin-top: 10px;
    }

    /* Section Ce que fait l'entreprise */
    .about {
      position: relative;
      padding: 80px 20px;
      color: white;
      text-align: center;
      background: url('https://picsum.photos/1600/900') no-repeat center center/cover;
    }

    .about::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 1;
    }

    .about .content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: auto;
    }

    /* Témoignages */
    .testimonials {
      height: 40vh;
      padding: 50px 20px;
      color: #f0ebe7;
      text-align: center;
      background: url(./image8.jpg) no-repeat center center/cover;
    }
    .testimonial {
      max-width: 600px;
      margin: 20px auto;
      font-style: italic;
    }

    /* Partenaires */
    .partners {
      padding: 50px 20px;
      text-align: center;
    }
    .partners img {
      max-width: 120px;
      margin: 15px;
      vertical-align: middle;
    }

    /* Actualités */
    .news {
      padding: 50px 20px;
      background: rgba(216, 109, 9, 0.815);
      text-align: center;
      color: #FFF;
    }
    .news article {
      max-width: 600px;
      margin: 20px auto;
      border-bottom: 1px solid #ddd;
      padding-bottom: 10px;
    }
    .newsz {
      padding: 0px;
      text-align: center;
      color: #FFF;
    }
    /* Formulaire */
    .contact-form {
      background: #f9f9f9;
      padding: 50px 20px;
      text-align: center;
    }

    .contact-form h2 {
      margin-bottom: 20px;
    }

    form {
      max-width: 600px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    input, textarea {
      padding: 12px;
      border: 1px solid #cccccc83;
      border-radius: 8px;
      font-size: 1rem;
      width: 100%;
    }

    button {
      padding: 12px;
      background: #28a745;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
    }

    button:hover {
      background: #218838;
    }

    /* Footer */
    footer {
      background: #222;
      color: white;
      text-align: center;
      padding: 30px 20px;
    }

    footer p {
      margin: 5px 0;
    }

    .social-icons {
      margin-top: 15px;
    }

    .social-icons a {
      color: white;
      font-size: 1.5rem;
      margin: 0 10px;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #28a745;
    }

    @media(max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }
      .activity {
        width: 100%;
      }
    }
    /* Services */
.services {
  padding: 50px 20px;
  background: white;
  text-align: center;
}
.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.service {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 280px;
  transition: transform 0.3s;
}
.service:hover {
  transform: translateY(-8px);
}
.service img {
  width: 80px;
  margin-bottom: 15px;
}
.service h3 {
  margin-bottom: 10px;
  color: #28a745;
}
/* Animation au scroll */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}