* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Figtree';
}
html {
      scroll-behavior: smooth;

}

body {
  min-height: 100vh;
  background-image: url("img/podstrona.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #1E1E1E;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.margin-sm {
    margin: 20px;
}



.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5000;

  transition: .3s ease;
}

.nav {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.365);

  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.332);
}


.nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 100px;
}

.nav-menu a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: white;
}



.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}


@media (max-width: 768px) {

    .hamburger {
        display: inline-flex;
        position: fixed;
        top: 18px;
        right: 18px;

        width: 48px;
        height: 48px;

        background: rgba(0,0,0,0.35);
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 12px;

        cursor: pointer;
        z-index: 3000; 

        align-items: center;
        justify-content: center;
    }

    .hamburger span {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 24px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: .25s ease;
        transform: translate(-50%, -50%);
    }

    .hamburger span:nth-child(1) {
        transform: translate(-50%, calc(-50% - 8px));
    }

    .hamburger span:nth-child(2) {
        transform: translate(-50%, -50%);
    }

    .hamburger span:nth-child(3) {
        transform: translate(-50%, calc(-50% + 8px));
    }

    .hamburger.active span:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }


    .nav-menu {
        position: fixed;
        inset: 0;
        height: 100vh;

        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(6px);

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;

        transform: translateY(-100%);
        transition: 0.35s ease;

        z-index: 2000;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .logo {
        position: fixed;
        top: 26px;
        left: 18px;
        z-index: 3000;
    }}



.privacy-policy {
    padding: 200px 180px;
}

.privacy-policy .container {
    margin: 0 auto;
    text-align: left;
}

.privacy-policy h1, 
.privacy-policy h2 {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-policy h1 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    font-size: 1.2rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.privacy-policy p, 
.privacy-policy li {
    color: #bbbbbb;
    line-height: 1.7;
    font-size: 0.95rem;
}

.privacy-policy strong {
    color: #ffffff; 
}

.privacy-policy ol, 
.privacy-policy ul {
    padding-left: 20px;
    margin-top: 10px;
}

.privacy-policy li {
    margin-bottom: 10px;
}

.privacy-policy .policy-block {
    margin-bottom: 30px;
}
.footer {
  color: #fff;
  display: flex;
  flex-direction: column;
}


.footer-main {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);

  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  width: 100%;
  max-width: 1200px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 100px 20px 70px;
  text-align: center;
}


.footer-logo {
  font-size: 28px;
  margin-bottom: 25px;
}


.footer-description {

  color: #bcbcbc;
  line-height: 1.8;
  margin-bottom: 60px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 45px;
}

.footer-nav a {
  color: #bcbcbc;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 16px;
}

.footer-nav a:hover {
  color: #ff2d20;
}

@media (max-width: 480px) {
  .contact {
    padding: 100px 0;
  }

  .contact .wrapper {
    padding: 0 14px;
  }

  .contact-description {
    font-size: 14px;
  }

  .contact-item {
    font-size: 16px;
    gap: 12px;
  }

  .contact-icon {
    width: 22px;
    height: 22px;
  }
}
.privacy-policy h3 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-top: 25px;
    margin-bottom: 10px;
}
.privacy-policy {
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    word-wrap: break-word; 
    overflow-wrap: break-word;
}

.privacy-policy .container {
    max-width: 900px;
    margin: 150px auto;
    text-align: left;
}

.privacy-policy h1, 
.privacy-policy h2,
.privacy-policy h3 {
    color: #ffffff;
    letter-spacing: 1px;
}

.privacy-policy h1 {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 40px;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-top: 35px;
    margin-bottom: 15px;
}

.privacy-policy h3 {
    font-size: 1.05rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.privacy-policy p, 
.privacy-policy li {
    color: #bbbbbb;
    line-height: 1.7;
    font-size: 0.95rem;
}

.privacy-policy strong {
    color: #ffffff; 
}

.privacy-policy ol, 
.privacy-policy ul {
    padding-left: 20px;
    margin-top: 10px;
}

.privacy-policy li {
    margin-bottom: 10px;
}

.privacy-policy .policy-block {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 40px 15px; 
    }

    .privacy-policy h1 {
        font-size: 1.8rem; 
        margin-bottom: 30px;
    }

    .privacy-policy h2 {
        font-size: 1.1rem;
        margin-top: 25px;
    }

    .privacy-policy h3 {
        font-size: 1rem;
    }

    .privacy-policy p, 
    .privacy-policy li {
        font-size: 0.9rem; 
        line-height: 1.6;
    }

    .privacy-policy ol, 
    .privacy-policy ul {
        padding-left: 15px; 
    }
}
.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: #ff2d20;
}

.contact-nip {
  margin-top: 25px;
  color: #9c9c9c;
  font-size: 16px;
}
.contact-link {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-link:hover {
  color: #ff2d20;
}

.footer-bottom {
  background: #ff2d20;

  display: flex;
  justify-content: center;
  align-items: center;

  height: 60px;
  font-size: 14px;
  font-weight: 500;
}