        /* Polices et couleurs inspirées par la Corse */
        :root {
          --primary-color: #668756;
          /* Vert nature */
          --secondary-color: #f8f4e3;
          /* Beige sable */
          --accent-color: #4a6b3a;
          /* Vert plus foncé */
          --text-color: #3a3a3a;
          --light-text: #f8f8f8;
        }

        body {
          font-family: 'Montserrat', sans-serif;
          margin: 0;
          padding: 0;
          background-color: var(--secondary-color);
          color: var(--text-color);
          line-height: 1.6;
        }

        /* Arrière-plan avec image de la Corse */
        .hero {
          background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/kevin-et-laurianne-langlais-0MGo3nl5iF4-unsplash') no-repeat center center/cover;
          height: 100vh;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-align: center;
          padding: 0 20px;
          color: var(--light-text);
        }

        .hero-services {
          background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/alejandra-cifre-gonzalez-aMjEoyVT7N0-unsplash') no-repeat center center/cover;
          height: 100vh;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-align: center;
          padding: 0 20px;
          color: var(--light-text);
        }

        /* Logo mis en avant */
        .logo {
          font-family: 'Ganache', 'Poppins', Arial, sans-serif;
          font-size: 2rem;
          font-weight: bold;
          text-decoration: none;
        }

        .logo-img {
          max-width: 200px;
          margin-bottom: 30px;
        }

        .logo-small-img {
          max-width: 100px;
          margin-left: 2rem;
        }

        h1 {
          font-size: 2.5em;
          margin-bottom: 20px;
          font-weight: 300;
        }

        .tagline {
          font-size: 1.5em;
          margin-bottom: 40px;
          max-width: 800px;
        }

        /* Bouton d'appel à l'action */
        .btn {
          display: inline-block;
          background-color: var(--primary-color);
          color: white;
          padding: 15px 30px;
          border-radius: 30px;
          text-decoration: none;
          font-weight: bold;
          margin: 10px;
          transition: all 0.3s;
          border: 2px solid white;
        }

        .btn:hover {
          background-color: var(--accent-color);
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Navigation */
        nav {
          background-color: rgba(255, 255, 255, 0.9);
          padding: 15px 0;
          position: fixed;
          width: 100%;
          top: 0;
          z-index: 1000;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        nav .container {
          display: flex;
          justify-content: space-between;
          align-items: center;
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
        }



        /* Section Services */
        .services {
          padding: 80px 20px;
          background-color: var(--light-color);
        }

        .section-title {
          text-align: center;
          font-size: 2.5rem;
          color: #4a6b3a;
          margin-bottom: 60px;
          position: relative;
          padding-bottom: 15px;
        }

        .section-title::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 3px;
          background-color: var(--accent-color);
        }

        .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
          gap: 30px;
          max-width: 1200px;
          margin: 0 auto;
        }

        .service-card {
          background: white;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .service-card img {
          width: 100%;
          height: 220px;
          object-fit: cover;
        }

        .service-card-content {
          padding: 25px;
        }

        .service-card-content h3 {
          color: var(--primary-color);
          font-size: 1.5rem;
          margin-bottom: 15px;
        }

        .service-card-content p {
          color: var(--text-dark);
          margin-bottom: 0;
        }

        /* Pied de page */
        footer {
          background-color: var(--primary-color);
          color: var(--light-text);
          text-align: center;
          padding: 30px 20px;
          margin-top: 50px;
        }

        footer .social-links {
          margin: 20px 0;
        }

        footer .social-links a {
          color: var(--light-text);
          margin: 0 10px;
          font-size: 1.5em;
        }

        /* Responsive */
        @media (max-width: 768px) {


          .hero h1, .hero-services h1 {
            font-size: 2.5em;
          }

          .services-grid {
            grid-template-columns: 1fr;
          }
        }

        .ds-none {
          display: block;
        }

        .dl-none {
          display: none;
        }

        @media (max-width: 991.98px) {
          .hero p.tagline, .hero-services p.tagline {
            font-size: 1.1rem;
          }

          .services-grid {
            grid-template-columns: 1fr;
          }

          .ds-none {
            display: none;
          }

          .dl-none {
            display: block;
          }
        }