/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
}

/* Background */
body {
  background: #eef1f5;
  padding: 40px;
}

/* Resume Container */
.resume-container {
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  padding: 45px 55px;
  border-radius: 10px;
  border-left: 6px solid #4a6fa5; /* Accent bar */
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Header */
.header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #d0d4da;
  margin-bottom: 25px;
}

.name {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-info {
  font-size: 15px;
  color: #555;
}

/* Section Titles */
.section-title {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid #4a6fa5;
  color: #2c3e50;
}

/* Section Spacing */
.section {
  margin-bottom: 28px;
}

/* Subheadings */
.subheading-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-top: 6px;
}

.subheading-line .left {
  font-weight: 600;
}

.subheading-line .right {
  font-style: italic;
  font-weight: 400;
  color: #444;
}

/* Body Text */
.text {
  font-size: 15px;
  margin-top: 4px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.inline-label {
  font-weight: 600;
}

/* Lists */
ul {
  margin-left: 22px;
  margin-top: 6px;
}

li {
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 1.4;
}

/* Work Experience */
.job-title-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-top: 6px;
}

.job-title {
  font-weight: 600;
}

.job-company {
  font-weight: 600;
}

.job-location {
  font-style: italic;
  font-weight: 400;
  color: #444;
}

.job-dates {
  font-style: italic;
  font-weight: 400; /* Not bold */
  color: #444;
}