/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* HEADER (same as contact) */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  padding: 10px 20px;
}
.header-left .logo {
  height: 70px;
}
.header-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.header-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.header-nav a.active {
  color: #e6341d;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-right .icon {
  width: 20px;
  filter: invert(1);
}
.header-right a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

/* MAIN WRAPPER */
.about-main {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}

/* INTRO */
.intro h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-align: center;
}
.intro p {
  margin-bottom: 40px;
}

/* MANAGEMENT */
.management h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}
.members {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.member {
  flex: 1 1 300px;
  text-align: center;
  padding: 20px;
}
.member-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.member h3 {
  margin-bottom: 5px;
}
.member .role {
  font-style: italic;
  color: #666;
  margin-bottom: 10px;
}

/* SPECIALIZATION */
.specialization {
  margin-top: 50px;
}
.specialization h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}
.specialization ul {
  list-style: disc inside;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}
.specialization li {
  margin-bottom: 8px;
}
