/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h2 {
  font-size: 2.5rem;
  color: #0d47a1;
}

header p {
  color: #555;
  font-size: 1.1rem;
}

section {
  margin: 2rem 0;
}

h2 {
  color: #0d47a1;
  border-bottom: 2px solid #0d47a1;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.card {
  background: #fafafa;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid #0d47a1;
  border-radius: 4px;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.02);
}

.card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.experience-mini {
  font-size: 0.97em;
  margin: 2px 0;
  padding: 2px 0;
}

.period {
  font-style: italic;
  color: #777;
}

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

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
}
