* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #0d0d0d;
      color: #f0f0f0;
      line-height: 1.6;
    }

    nav {
      background-color: #111;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #00bcd4;
      text-transform: uppercase;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    nav ul li a {
      color: #f0f0f0;
      text-decoration: none;
      transition: color 0.3s;
      font-weight: 500;
    }

    nav ul li a:hover {
      color: #00bcd4;
    }

    .container {
      max-width: 1100px;
      margin: 2rem auto;
      padding: 1rem;
    }

    .section {
      margin-bottom: 4rem;
    }

    .section h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: #00bcd4;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
    }

    .team-member {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 1rem;
      text-align: center;
      transition: transform 0.3s;
    }

    .team-member:hover {
      transform: translateY(-5px);
    }

    .team-member img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    .button {
      background-color: #00bcd4;
      color: #fff;
      border: none;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      cursor: pointer;
      border-radius: 25px;
      text-decoration: none;
      transition: background-color 0.3s;
      display: inline-block;
      margin-top: 1rem;
    }

    .button:hover {
      background-color: #0097a7;
    }

    footer {
      background-color: #111;
      color: #aaa;
      text-align: center;
      padding: 1rem;
    }
    nav ul li a:hover, nav ul li a[aria-current="page"] {
  color: #00bcd4;
}

/* Hero sekce */
.hero-section {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #121212;
  border-radius: 12px;
  margin-bottom: 3rem;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: #00bcd4;
  margin-bottom: 1rem;
}
.hero-section p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Hodnoty */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.value-item {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}
.value-item:hover {
  transform: translateY(-5px);
}
.value-item img {
  width: 50px;
  margin-bottom: 1rem;
}
.value-item h3 {
  color: #00bcd4;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.value-item p {
  color: #ccc;
}
