* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2a3c35;
  background: linear-gradient(to bottom, #a8c3a0 0%, #fffdd0 100%);
  padding: 2em;
}

.resume-container {
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5em;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 2em;
}

header h1 {
  font-size: 2.2rem;
  color: #025a4e;
  margin-bottom: 0.3em;
}

header p {
  font-size: 0.95rem;
  color: #3b4a3f;
}

section {
  margin-bottom: 2em;
}

h2 {
  font-size: 1.3rem;
  color: #025a4e;
  border-bottom: 2px solid #a8c3a0;
  padding-bottom: 0.3em;
  margin-bottom: 0.8em;
}

.job {
  margin-bottom: 1.5em;
}

.job h3 {
  font-size: 1rem;
  color: #2a3c35;
  font-weight: 600;
}

.job span {
  font-weight: 400;
  color: #52685f;
  font-style: italic;
}

ul {
  margin-left: 1.2em;
  list-style-type: disc;
}

ul li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.skills li {
  list-style: none;
  margin-bottom: 0.5em;
}

strong {
  color: #025a4e;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  body { padding: 1em; }
  .resume-container { padding: 1.2em; }
  header h1 { font-size: 1.8rem; }
  h2 { font-size: 1.15rem; }
  .job h3 { font-size: 0.95rem; }
}

/* Print styles for clean PDF export */
@media print {
  * { box-shadow: none !important; text-shadow: none !important; }
  html, body { background: #fff !important; }
  body { padding: 0; }
  .resume-container {
    max-width: none;
    margin: 0;
    padding: 0.5in;
    border-radius: 0;
    box-shadow: none;
  }
  header, section { break-inside: avoid; }
  .job { break-inside: avoid; }
  h1, h2, h3, p, li { color: #000 !important; }
  a { color: #000; text-decoration: none; }
}
