body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.7;
  color: #333;
  background-color: #f9f9f9;
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

h1 {
  font-size: 2.8em;
  margin-bottom: 0.5rem;
  color: #222;
}

header p {
  font-size: 1.1em;
  color: #555;
  margin-top: 0;
}

h2 {
  font-size: 1.8em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #007bff;
  padding-bottom: 0.5rem;
  color: #111;
}

section {
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #007bff;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus {
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
}

ul {
  padding-left: 0;
  list-style: none;
}

section ul a {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #0056b3;
  text-decoration: underline;
}
section ul a:hover {
    color: #007bff;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1.05em;
}

.resume-container {
}

.resume-container iframe {
}

.download-btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  transition: background-color 0.2s ease;
}

.download-btn:hover,
.download-btn:focus {
  background-color: #0056b3;
  color: white;
  text-decoration: none;
}

@media (max-width: 600px) {
  body {
    margin: 1rem;
    padding: 1.5rem;
  }

  h1 {
    font-size: 2.2em;
  }

  h2 {
    font-size: 1.5em;
  }

  .social-links a {
    margin: 5px;
    display: block;
    text-align: center;
  }
}