/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: #f0f2f5;
  color: #2d2d2d;
  line-height: 1.65;
  padding: 20px;
}

/* ===== Container ===== */
.container {
  max-width: 880px;
  margin: 20px auto;
  background: #ffffff;
  padding: 48px 52px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Header ===== */
header {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 3px solid #0a66c2;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a66c2;
  margin-bottom: 8px;
}

.contact-info {
  font-size: 0.92rem;
  color: #555;
}

.contact-info a {
  color: #0a66c2;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ===== Section Headings ===== */
h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a66c2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #dde1e6;
}

/* ===== Jobs ===== */
.job {
  margin-bottom: 22px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.job-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
}

.company {
  font-size: 0.92rem;
  color: #555;
}

.dates {
  font-size: 0.88rem;
  color: #777;
  margin-bottom: 6px;
}

ul {
  padding-left: 22px;
  margin-top: 4px;
}

li {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

/* ===== Education ===== */
.education-item {
  margin-bottom: 12px;
}

.education-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.education-item p {
  font-size: 0.92rem;
  color: #555;
}

/* ===== Skills Grid ===== */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.skill-tag {
  background: #e8f0fe;
  color: #0a66c2;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* ===== Footer / Counter ===== */
footer {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #dde1e6;
  text-align: center;
  font-size: 0.88rem;
  color: #888;
}

#counter {
  font-weight: 700;
  color: #0a66c2;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .container {
    padding: 28px 20px;
  }

  .job-header {
    flex-direction: column;
  }

  h1 {
    font-size: 1.6rem;
  }
}
