  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }

    .container {
      max-width: 1600px;
      margin: auto;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 40px;
      z-index: 5;
      background: transparent;
    }

    .navbar .logo {
      height: 120px;
    }

    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      padding: 8px 12px;
      transition: background 0.3s;
      border-radius: 4px;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .lang-nav button {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid #fff;
      color: #fff;
      padding: 8px 14px;
      margin-left: 8px;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .lang-nav button:hover {
      background: #fff;
      color: #000;
    }

    .hero {
      position: relative;
      background: url('img/background.png') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      border-bottom: 5px solid #3498db;
    }

    .hero .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      backdrop-filter: blur(3px);
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 1.2rem;
      color: #ddd;
    }

    section {
      padding: 60px 20px;
      text-align: center;
    }

    h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
    }

    .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      width: 300px;
      transition: transform 0.3s;
    }

    .card img {
      width: 100%;
    }

    .card-content {
      padding: 20px;
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 1.4rem;
    }

    .card p {
      margin-bottom: 15px;
    }

    .card a {
      display: inline-block;
      background: #3498db;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .card a:hover {
      background: #2980b9;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .gallery img {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    #kontakt {
      background: linear-gradient(to right, #eef2f3, #dfe6e9);
    }

    .kontakt-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      font-size: 1.1rem;
    }

    .kontakt-info i {
      margin-right: 8px;
      color: #3498db;
    }

    footer {
      background: #222;
      color: #fff;
      text-align: center;
      padding: 40px 20px 60px;
      position: relative;
    }

    footer a {
      color: #3498db;
      text-decoration: none;
    }

    .fixed-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 10;
    }

    .fixed-buttons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: #25D366;
      border-radius: 50%;
      color: white;
      font-size: 24px;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s;
    }

    .fixed-buttons a.viber {
      background: #7360f2;
    }

    .fixed-buttons a:hover {
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .hero {
        height: 50vh;
      }

      .card {
        width: 90%;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .nav-links {
        display: none;
      }
    }