    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: Arial, sans-serif;
    }

    body {
      background: url('https://stefisa.fr/images/stefisa.jpg') no-repeat center center fixed;
      background-size: cover;
      color: white;
      text-shadow: 1px 1px 4px #000;
      overflow-x: hidden;
    }

    .content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1em;
      box-sizing: border-box;
    }

    .carousel {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 1em;
    }

    .carousel img {
      width: 100px;
      height: 75px;
      object-fit: cover;
      border: 2px solid white;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .carousel img:hover {
      transform: scale(1.05);
    }

    .presentation {
      background: rgba(0, 0, 0, 0.6);
      padding: 1em;
      box-sizing: border-box;
      border-radius: 10px;
      margin-bottom: 100px;
      text-align: left;
      width: 90%;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    footer {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.8);
      text-align: center;
      padding: 1em;
      box-sizing: border-box;
      z-index: 10;
    }

    a.email-link {
      color: #fff;
      text-decoration: underline;
    }

    /* Popup modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 20;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
    }

    .modal img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 12px; /* Ajout pour coins arrondis */
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.7); /* Optionnel : ombre douce */
    }

    .modal .close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      text-decoration: none;
      z-index: 30;
    }

    footer {
	  position: fixed;
	  bottom: 0;
	  width: 100%;
	  background: rgba(0, 0, 0, 0.8);
	  text-align: center;
	  padding: 1em;
	  box-sizing: border-box;
	  font-size: 0.9em;
	  z-index: 10;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  gap: 0.5em;
	}
	
	/* Style pour le lien social */
	footer .social-link img {
	  width: 20px;
	  height: 20px;
	  vertical-align: middle;
	  margin-left: 0.5em;
	  transition: transform 0.3s;
	}
	footer .social-link:hover img {
	  transform: scale(1.1);
	}

    @media (max-width: 600px) {
      .carousel img {
        width: 70px;
        height: 52px;
      }
    }
