/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #333;
  color: #fff;
  padding: 1em 0;
}

header nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1em;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
}

/* Hero Section */
#hero {
  text-align: center;
  padding: 4em 1em;
  background: #f4f4f4;
}

#hero img {
  max-width: 150px;
  border-radius: 50%;
}

/* Skills Section */
#skills {
  padding: 2em 1em;
  text-align: center;
}

.skills-container {
  display: flex;
  justify-content: center;
  gap: 2em;
}

.skill {
  background: #eee;
  padding: 1em;
  border-radius: 10px;
  text-align: center;
}

/* Positions Section */
#positions {
  padding: 2em 1em;
}

.positions-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.position {
  background: #ddd;
  padding: 1em;
  border-radius: 10px;
}

/* Contact Section */
#contact form {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: 0 auto;
}

#contact form input, #contact form textarea {
  margin-bottom: 1em;
  padding: 0.5em;
}

footer {
  text-align: center;
  padding: 1em;
  background: #333;
  color: #fff;
}
