body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7faff;
  color: #222;
}

header {
  background: #003b86;
  color: #fff;
  padding: 40px 0 20px 0;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 16px;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 16px;
  object-fit: cover;
}

h1 {
  margin: 0 0 8px 0;
  font-size: 2.5rem;
}

h2 {
  margin: 0 0 24px 0;
  font-weight: 400;
  font-size: 1.5rem;
  color: #b3d1ff;
}

nav {
  margin-bottom: 16px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 16px;
  font-weight: bold;
  transition: color 0.2s;
}

nav a:hover {
  color: #25d366;
}

section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,59,134,0.06);
  margin-bottom: 32px;
}

h3 {
  color: #003b86;
  margin-top: 0;
}

.skills-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.skills-list li {
  background: #e6eef8;
  color: #003b86;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
}

.experience-item, .project-item {
  margin-bottom: 24px;
}

.experience-item h4, .project-item h4 {
  margin: 0 0 4px 0;
  color: #003b86;
}

.experience-item span {
  display: block;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.experience-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.exp-logo-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(1,12,128,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  padding: 24px 16px;
  text-align: center;
}

.exp-logo-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.exp-logo-item strong {
  color: #003b86;
  font-size: 1.1rem;
}

.exp-logo-item .exp-date {
  color: #666;
  font-size: 0.95rem;
  font-weight: normal;
}

/* Certifications section */
.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cert-link {
  color: #003b86;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.2s;
}

.cert-link:hover {
  color: #25d366;
}

footer {
  background: #003b86;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  margin-top: 32px;
  font-size: 1rem;
}