html, body, main, header, footer {
  padding: 0px;
  margin: 0px;
}

div#app {
  display: flex;
  flex-wrap: wrap;
}

/* Header */
.resume-header {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.resume-header h1 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: 4px;
}

.resume-header .job-title {
  margin: 8px 0 0;
  font-size: 1rem;
  opacity: 0.85;
  letter-spacing: 2px;
}

.header-photo {
  margin-bottom: 16px;
}

.header-photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.6);
  object-fit: cover;
  background: #fff;
}

/* Sidebar */
.sidebar {
  width: 100%;
  background: #2c3e50;
  color: #ecf0f1;
  padding: 30px 20px;
  box-sizing: border-box;
}

.sidebar .section-title {
  font-size: 1.1rem;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 8px;
  margin: 0 0 12px;
}

.info-section {
  margin-bottom: 24px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 4px 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Content */
.content {
  width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  background: #fff;
}

.content-section {
  margin-bottom: 30px;
}

.content-section-title {
  font-size: 1.2rem;
  color: #2c3e50;
  letter-spacing: 3px;
  border-left: 4px solid #2c3e50;
  padding-left: 12px;
  margin: 0 0 20px;
}

/* Timeline */
.timeline-item {
  display: flex;
  margin-bottom: 20px;
  position: relative;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  background: #2c3e50;
  border-radius: 50%;
  margin-top: 6px;
  margin-right: 14px;
  flex-shrink: 0;
}

.timeline-body {
  flex: 1;
}

.timeline-body h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #2c3e50;
}

.timeline-body p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.timeline-body ul,
.content-section ul {
  padding-left: 18px;
  margin: 0;
}

.timeline-body ul li,
.content-section ul li {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Footer */
.page-info {
  text-align: center;
  padding: 16px 10px;
  font-size: 0.78rem;
  color: #999;
  background: #f5f5f5;
}

.page-info a {
  color: #666;
  text-decoration: none;
}

.page-info a:hover {
  color: #2c3e50;
}

/* Responsive */
@media (min-width: 769px) {
  .sidebar {
    width: 35%;
    min-height: calc(100vh - 180px);
  }

  .content {
    width: 65%;
    min-height: calc(100vh - 180px);
    padding: 40px 36px;
  }

  .resume-header {
    padding: 50px 20px;
  }

  .resume-header h1 {
    font-size: 2.6rem;
  }
}

/* Print */
@media print {
  .resume-header {
    background: #2c3e50 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    padding: 25px 20px;
  }

  .sidebar {
    background: #2c3e50 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    color: #ecf0f1 !important;
  }

  .page-info {
    display: none;
  }

  .content-section-title {
    color: #000 !important;
  }

  .timeline-body h3 {
    color: #000 !important;
  }
}
