* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7fb;
  color: #1f2937;
  line-height: 1.6;
  padding: 30px 15px;
}

.resume-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.header {
  text-align: center;
  border-bottom: 2px solid #dbe4f0;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact {
  font-size: 0.95rem;
  color: #475569;
}

.contact a {
  color: #2563eb;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.section {
  margin-bottom: 32px;
}

.section h2 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job,
.edu {
  margin-bottom: 24px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.job-header h3,
.edu h3,
.skill-card h3 {
  font-size: 1.05rem;
  color: #111827;
}

.job-header span {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: bold;
}

.company {
  font-style: italic;
  color: #475569;
  margin: 4px 0 10px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.skill-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
  padding: 16px;
  border-radius: 10px;
}

.skill-card p {
  margin-top: 8px;
  color: #374151;
}

@media (max-width: 768px) {
  .resume-container {
    padding: 24px;
  }

  .header h1 {
    font-size: 1.8rem;
  }

  .job-header {
    flex-direction: column;
  }
}