body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #f9f9f9;
  height: 100vh;
  overflow: hidden;
}

.container {
  display: flex;
  height: 100vh;
}

/* Colonne gauche */
.left {
  flex: 0 0 40%;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  overflow-y: auto;
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.profil {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.about, .contact {
  margin-bottom: 20px;
}

a {
  color: #0B6787;
  text-decoration: none;
}

/* Colonne droite */
.right {
  flex: 0 0 60%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider {
  position: relative;
  width: 100%;
  height: 80%;
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Responsive */
@media (max-width: 900px) {
  body {
    overflow: auto;
  }
  .container {
    flex-direction: column;
    height: auto;
  }
  .left, .right {
    flex: 0 0 auto;
    width: 100%;
  }
  .slider {
    height: auto;
  }
  .slide img {
    height: auto;
  }
}
