* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f3;
  font-family: 'DM Sans', sans-serif;
  color: #2a2a2a;
  padding: 40px 20px;
}
 
.card {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  padding: 44px 40px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
}
 
/* ===== Top: Photo + Name ===== */
.top {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 32px;
}
 
.photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.photo-placeholder {
  font-size: 30px;
  color: #ccc;
}
 
.top h1 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
 
.top p {
  font-size: 14px;
  color: #888;
  margin-top: 2px;
}
 
/* ===== Sections ===== */
.section {
  margin-bottom: 26px;
}
 
.section:last-child {
  margin-bottom: 0;
}
 
.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
}
 
.section p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
 
/* ===== Objectif ===== */
.objectif {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #444;
}
 
.objectif .arrow {
  color: #bbb;
  font-size: 18px;
}
 
/* ===== Skills ===== */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
 
.skill {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  background: #f5f5f3;
  color: #555;
}
 
/* ===== Responsive ===== */
@media (max-width: 560px) {
  .card {
    padding: 32px 24px;
  }
 
  .top h1 {
    font-size: 20px;
  }
}
 