/* style.css — Axium Consult Pro */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: #333;
  scroll-behavior: smooth;
  line-height: 1.6;
}

header {
  background: #fff;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo {
  height: 60px;
}

nav a {
  margin-left: 16px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #e20000;
}

section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.hero {
  background-color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

ul {
  margin-left: 20px;
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 30px 15px;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  font-size: 0.85rem;
  color: #555;
}

.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.team-member {
  flex: 1;
  min-width: 280px;
}

.team-member img {
  width: 100%;
  max-width: 280px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.lang-switch {
  font-size: 0.9rem;
  font-weight: normal;
  margin-left: auto;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    margin-left: 0;
    margin-right: 15px;
    display: inline-block;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  section {
    padding: 40px 15px;
  }

  .team-section {
    flex-direction: column;
  }

  .team-member {
    text-align: center;
  }
}
