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

body {
  font-family: 'Inter', sans-serif;
  background: #f9fbfd;
  color: #333;
  line-height: 1.7;
  padding: 20px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e0e6ed;
}

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

.header .intro h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.icon-header {
  color: #6eceda;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.contact a {
  color: #6eceda;
  text-decoration: none;
}

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

/* Cards */
.card {
  background: white;
  padding: 30px;
  margin: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
}

.section-title {
  color: #1a3a5f;
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3498db;
  display: inline-block;
  font-weight: 600;
}

/* Two Column */
.two-column {
  display: flex;
  gap: 20px;
  margin: 20px;
  flex-wrap: wrap;
}

.two-column .card {
  flex: 1;
  min-width: 300px;
}

/* Job & Education */
.job, .item {
  margin-bottom: 24px;
}

.job h3, .item h3 {
  color: #2c3e50;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.meta, .item em {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
}

ul {
  padding-left: 20px;
  margin-top: 8px;
}

li {
  margin-bottom: 8px;
}

/* Skills */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.skill-tag {
  background: #e3f2fd;
  color: #1565c0;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.skill-tag i {
  background: #1a3a5f;
  color: white;
  width: 16px;
  height: 16px;
  padding: 4px;
  border-radius: 50%;
  margin-right: 8px;
}

/* No Bullets */
.no-bullets li {
  list-style: none;
  margin-bottom: 10px;
  color: #444;
}

/* Download Button */
.download-section {
  text-align: center;
  padding: 20px;
}

.btn-primary {
  padding: 14px 32px;
  font-size: 1.1rem;
  background: linear-gradient(to right, #1a3a5f, #2c3e50);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  background: #0d2a4a;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  color: #777;
  font-size: 0.9rem;
  background: #f5f7fa;
  border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2.2rem;
  }
  .two-column {
    flex-direction: column;
  }
  .card {
    margin: 15px;
    padding: 20px;
  }
  .download-section {
    padding: 15px;
  }
}