body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

h1, h2, h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

h1 {
  font-size: 2em;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

h2 {
  font-size: 1.3em;
  color: #222;
  margin-top: 30px;
}

p {
  margin-bottom: 12px;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 5px;
}

.small {
  font-size: 0.9em;
}

nav {
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

nav li {
  margin: 0;
}

nav a {
  color: #555;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav a:hover {
  color: #0077cc;
  text-decoration: none;
}

nav a.active {
  color: #0077cc;
  border-bottom-color: #0077cc;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.site-header h1 {
  margin: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
}

.company-name {
  font-size: 1.1em;
  color: #666;
  margin-top: 0;
}

.tagline {
  font-size: 1.1em;
  color: #444;
  margin-top: 8px;
}

.specialties {
  margin-top: 20px;
}

.specialty-list {
  list-style: none;
  padding: 0;
}

.specialty-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.specialty-list li:last-child {
  border-bottom: none;
}

.specialty-list li::before {
  content: "•";
  color: #0077cc;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.4;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.meta-item {
  font-size: 0.95em;
}

.meta-item strong {
  color: #555;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.team-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.team-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  background: #e0e0e0;
}

.team-name {
  font-size: 1.15em;
  font-weight: 600;
  margin: 0 0 4px;
}

.team-role {
  font-size: 0.95em;
  color: #666;
  margin: 0 0 12px;
}

.team-location {
  font-size: 0.85em;
  color: #888;
  margin-bottom: 16px;
}

.section {
  margin-bottom: 20px;
}

.subsection {
  margin-bottom: 10px;
}

.job-title {
  font-weight: 600;
}

.job-meta {
  color: #666;
  font-size: 0.9em;
}

.download {
  margin-top: 10px;
  display: inline-block;
  padding: 6px 12px;
  background-color: #0077cc;
  color: #fff;
  border-radius: 6px;
  font-size: 0.9em;
  text-decoration: none;
}

.download:hover {
  background-color: #005fa3;
  text-decoration: none;
}

footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 0.85em;
  color: #888;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px 0 16px;
  display: block;
}
@media (max-width: 640px) {
  .container {
    margin: 20px auto;
    padding: 16px 20px;
  }

  nav ul {
    gap: 16px;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }
}