  :root {
    --accent: #2563eb;
    --bg: #f9fafb;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
  }

  * {
    box-sizing: border-box;
  }
 a.link-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
a.link-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}
a.link-btn:active {
  transform: translateY(0);
}
a.fancy-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
a.fancy-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
a.fancy-link:hover::after {
  transform: scaleX(1);
}
p.profil {
  text-align: justify;
  line-height: 1.8;
  text-indent: 24px;
}

  body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }
  header {
    background: var(--accent);
    color: white;
    padding: 32px 20px;
    text-align: center;
  }
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: white;
  padding: 32px 20px;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

  header h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
  }
  header .role {
    margin-top: 4px;
    font-size: 18px;
    opacity: 0.9;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
  }
  @media (max-width: 900px) {
    .container {
      grid-template-columns: 1fr;
    }
  }

  section {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
  }
  h2 {
    font-size: 18px;
    margin: 0 0 12px;
    color: var(--accent);
    border-bottom: 2px solid var(--border);
    padding-bottom: 6px;
  }
  h3 {
    font-size: 15px;
    margin: 14px 0 4px;
  }
  .when {
    font-size: 13px;
    color: var(--muted);
  }
  ul {
    padding-left: 18px;
    margin: 8px 0;
  }
  li {
    margin-bottom: 6px;
  }
  .pill {
    display: inline-block;
    background: #eff6ff;
    color: var(--text);
    border: 1px solid #bfdbfe;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    margin: 4px 6px 0 0;
  }
  .muted {
    color: var(--muted);
    font-size: 13px;
  }
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: white;
  padding: 32px 20px;
  border-bottom: 2px solid var(--accent);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cv-photo {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 10%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border: 3px solid white;
}

.header-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}




@media (max-width: 600px) {
 }
