body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f4f7fa;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Resume container */
.resume {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
}

/* Profile picture */
.profile-pic {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: auto;
  border-radius: 50%;
  border: 3px solid #004aad;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  z-index: 1;
}

/* Section spacing */
header, section {
  margin-bottom: 2rem;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
  color: #004aad;
}

h2 {
  color: #555;
  margin-top: 0.5rem;
  font-weight: 300;
}

h3 {
  border-bottom: 2px solid #004aad;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
}

/* Job entries */
.job {
  margin-bottom: 1.5rem;
  background: #ffffff;
  padding: 1rem;
  border-left: 4px solid #004aad;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.job h4 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  display: flex;
  justify-content: space-between;
}

/* Lists */
ul {
  margin: 0;
  padding-left: 1.25rem;
}

/* Links */
a {
  color: #0077cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .profile-pic {
    position: static;
    display: block;
    margin: 1rem auto;
  }
  .job h4 {
    flex-direction: column;
    align-items: flex-start;
  }
}