body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 50px;
    background-color: #f4f4f4;
    @media (max-width: 700px) {
        margin: 10px;
    }
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.logo {
    width: 120px;
    height: auto;
    @media (max-width: 700px) {
        width: 80px;
    }
}

.name {
    width: 400px;
    height: auto;
    @media (max-width: 700px) {
        width: 220px;
    }
}

.footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
}

.text {
    font-size: 25px;
    font-weight: bold;
    @media (max-width: 700px) {
        font-size: 18px;
    }
}

.columns {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.column, .column2 {
    background: #d1e5eb;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.column {
    width: 120px;
    @media (max-width: 700px) {
        width: 70px;
    }
}

.column2 {
    width: 100px;
    @media (max-width: 600px) {
        width: 40px;
    }
}

.link {
    text-decoration: none;
    color: green;
    word-break: break-word;
    @media (max-width: 700px) {
        font-size: 20px;
    }
}

.link:hover {
    opacity: 0.5;
}

.allegro-logo {
    width: 120px;
    height: auto;
    @media (max-width: 600px) {
        width: 60px;
    }
}

.olx-logo {
    width: 50px;
    height: auto;
    @media (max-width: 600px) {
        width: 50px;
    }
}

.vinted-logo {
    width: 120px;
    height: auto;
    @media (max-width: 600px) {
        width: 60px;
    }
}

.social-media-logo {
    width: 60px;
    height: auto;
    @media (max-width: 600px) {
        width: 30px;
    }
}

.contact {
    font-size: 20px;
    margin: 20px 0 20px 0;
}

.separator {
    width: 100%;
    height: 1.5px;
    background: grey;
}

.separator2 {
    width: 100%;
    height: 1px;

}

.gallery {
    margin: 50px 0 100px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    img {
        width: 200px;
    }
}

.image-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 100px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1;
    margin: 0 50px 0 50px;
}

.dropdown-content a {
    color: black;
    padding: 3px 3px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}


#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  z-index: 9999;
}
#cookie-banner button {
  background: #f1d600;
  border: none;
  padding: 8px 15px;
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

#cookie-banner .cb-link {
  color: #f1d600;       /* kolor linku */
  text-decoration: underline; /* podkreślenie */

