body {
  font-family: "Poppins", sans-serif;
  background: #f5f6fa;
  color: #2f3640;
  margin: 0;
}

.cv-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  max-width: 1100px;
  margin: 40px auto;
  background: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
}

/* Colonne gauche */
.left-column {
  background: #273c75;
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.left-column h1 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 5px;
}

.left-column h2 {
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
  color: #dcdde1;
}

.left-column h3 {
  border-bottom: 1px solid #718093;
  padding-bottom: 5px;
  margin-top: 25px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.left-column ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.left-column ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Colonne droite */
.right-column {
  padding: 40px;
}

.right-column h2 {
  color: #192a56;
  border-bottom: 2px solid #273c75;
  display: inline-block;
  margin-bottom: 15px;
}

.job, .edu {
  margin-bottom: 20px;
}

.job h3, .edu h3 {
  margin: 0;
  font-size: 16px;
  color: #273c75;
}

.job span, .edu span {
  font-size: 13px;
  color: #718093;
}

.projects ul {
  list-style: square;
  padding-left: 20px;
}

a {
  color: #00a8ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .cv-container {
    grid-template-columns: 1fr;
  }

  .left-column, .right-column {
    padding: 25px;
  }

  .right-column {
    padding-top: 0;
  }

  .profile-pic {
    width: 120px;
    height: 120px;
  }

  .left-column h1 {
    font-size: 20px;
  }

  .left-column h2 {
    font-size: 14px;
  }

  .right-column h2 {
    font-size: 18px;
  }
}