/* Root base: 1rem = 16px */
html {
  font-size: 16px;
}

/* On small screens, reduce base size */
@media (max-width: 768px) {
  html {
    font-size: 14px; /* 1rem = 14px on mobile */
  }
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
  margin: 0;
  padding: 1rem; /* 16px or 14px */
}

.resume {
  max-width: 800px;
  margin: 2rem auto; /* 32px top/bottom on desktop */
  background: white;
  padding: 2rem; /* 32px */
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  font-size: 2.5rem; /* 40px */
  color: #0056b3;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.8rem; /* 28.8px */
  color: #0056b3;
  border-bottom: 2px solid #0056b3;
  padding-bottom: 0.5em; /* relative to current font size */
}

h3 {
  font-size: 1.4rem; /* 22.4px */
  color: #0056b3;
  margin: 1em 0 0.5em; /* spacing relative to h3 */
}

.company {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin: 0;
}

.education {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin: 0;
}

.certification {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin: 0;
}

p, li {
  font-size: 1rem; /* 16px or 14px */
}

ul {
  padding-left: 1.5em; /* indents scale with text */
}