/* Reset some default styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

header img {
  border-radius: 50%;
  margin-top: 10px;
}

/* Navigation */
nav {
  background-color: #444;
  padding: 10px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Section styling */
section {
  padding: 30px 20px;
  max-width: 800px;
  margin: auto;
  background-color: white;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  text-align: center;
  background-color: #333;
  color: white;
  padding: 15px;
}

/* Links */
a {
  color: #007BFF;
}

a:hover {
  text-decoration: underline;
}

/* Resume link style */
#contact a {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
}