 body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      line-height: 1.6;
      background-color: #fefefe;
    }
    header {
      background: url(zdj/images1.jpg) no-repeat center center/cover;
      height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
    }
    header h1 {
      font-size: 3rem;
      margin: 0;
    }
    header p {
      font-size: 1.5rem;
      margin-top: 1rem;
    }
    nav {
      background-color: #008cba;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 0.5rem;
    }
    nav a {
      color: white;
      padding: 0.75rem;
      text-decoration: none;
    }
    nav a:hover {
      background-color: #005f73;
    }
    section {
      padding: 2rem;
      max-width: 1200px;
      margin: auto;
    }
    .gallery img {
      width: 100%;
      max-width: 300px;
      margin: 1rem;
      border-radius: 8px;
    }
    .gallery {
      display: block;
      flex-wrap: wrap;
      justify-content: center;
    }
    form input, form textarea {
      width: 100%;
      padding: 0.5rem;
      margin-bottom: 1rem;
    }
    form button {
      background-color: #008cba;
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      cursor: pointer;
    }
    @media(max-width: 768px) {
      header h1 { font-size: 2rem; }
      header p { font-size: 1.1rem; }
    }

    .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: #fff;
  padding: 1rem;
  font-size: 0.9rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-banner button {
  margin-top: 0.5rem;
  background: #4da6ff;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-banner a {
  color: #4da6ff;
  text-decoration: underline;
}
