body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f6f8fa;
  color: #1f2933;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.3rem;
  color: #2563eb;
  margin-top: 2rem;
}

.subtitle {
  color: #4b5563;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

p {
  margin-bottom: 1.2rem;
}

ul {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.6rem;
}

.highlight {
  background: #eff6ff;
  padding: 1rem;
  border-left: 4px solid #2563eb;
  border-radius: 4px;
  margin: 2rem 0;
}

footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.btn-cv {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.4rem;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-cv:hover {
  background-color: #1e40af;
  transform: translateY(-1px);
}

.btn-cv:active {
  transform: translateY(0);
}
