body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f9fa;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}
.container {
  background: #fff;
  margin-top: 80px;
  padding: 2.5rem 2.5rem;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.09);
  max-width: 700px;
  width: 100%;
  text-align: center;
}
h1 {
  font-size: 2.2rem;
  margin: 0 0 0.6em 0;
  color: #1a5fac;
}
p {
  font-size: 1.2rem;
  margin: 0 0 1.2em 0;
}
.looking {
  display: inline-block;
  padding: 0.5em 1em;
  margin-top: 1em;
  background: #eaf6ff;
  color: #2074c8;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1rem;
}
.extra {
  margin-top: 2em;
  font-size: 1.09rem;
  color: #444;
  line-height: 1.7;
}
.interests-list {
  list-style: none;
  padding: 0;
  margin: 1.3em 0 0.5em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em 2.5em;
}
.interests-list li {
  background: #f0f4fa;
  border-radius: 7px;
  padding: 0.45em 1.1em;
  margin: 0.3em 0;
  font-weight: 500;
  color: #2366a2;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(70,120,200,0.06);
  transition: background 0.2s;
}
.interests-list li:hover {
  background: #e1edfa;
}
.linkedin-link {
  display: inline-block;
  margin-top: 1.2em;
  color: #0a66c2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.linkedin-link:hover {
  color: #004182;
  text-decoration: underline;
}
.projects {
  margin-top: 2.6em;
}
.projects h2 {
  color: #1a5fac;
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}
.project-links {
  list-style: none;
  padding: 0;
  margin: 1.2em 0 0 0;
}
.project-links li {
  margin: 0.6em 0;
}
.project-links a {
  color: #2074c8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.project-links a:hover {
  text-decoration: underline;
  color: #1a5fac;
}
.back-link {
  display: inline-block;
  margin-bottom: 1.5em;
  color: #2074c8;
  text-decoration: none;
  font-weight: 500;
}
.back-link:hover {
  text-decoration: underline;
}
.project-gallery {
  display: flex;
  gap: 1.2em;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2em;
}
.project-gallery img {
  max-width: 220px;
  border-radius: 8px;
  border: 1px solid #d2e3f3;
  background: #f0f4fa;
}
.project-desc {
  text-align: left;
  margin-bottom: 2em;
}
.project-table {
  border-collapse: collapse;
  width: 100%;
  background: #f7f9fa;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.project-table th, .project-table td {
  border: 1px solid #c5d4e6;
  padding: 0.6em 1em;
  text-align: left;
}
.project-table th {
  background: #eaf6ff;
  color: #1a5fac;
}
@media (max-width: 700px) {
  .container {
    max-width: 98vw;
    padding: 1.5rem 0.7rem;
  }
  h1 {
    font-size: 1.5rem;
  }
  .interests-list {
    flex-direction: column;
    gap: 0.5em;
  }
  .project-gallery {
    flex-direction: column;
    gap: 1em;
  }
  .project-table th, .project-table td {
    padding: 0.5em 0.5em;
    font-size: 0.97rem;
  }
}
