body {
    background-color: #E5DDD2;
    color: inherit;
    position: relative;
}

.polityka h1 {
    font-size: 3.2rem;
    margin-left: 15px;
    padding-top: 200px;
}


.polityka-body {
    max-width: 400px;
    margin: 0 auto;
    margin-left: 20px;
    margin-right: 20px;
    padding: 80px 0 80px 0;
    font-size: 16px;
    z-index: 3;
}

#menuBtn {
    color: inherit;
}

.header-logo-image {
  position: absolute;
  top: 140px;
  left: 60px;
  max-width: 100px;
}

.navigation-center-desktop a{
    color: inherit;
}

.footer-menu-links {
    text-transform: uppercase;
}

@media (min-width: 630px) {
    .polityka h1 {
        font-size: 3rem;
        margin-left: 15px;
        padding-top: 180px;
    }
    
    
    .polityka-body {
        max-width: 700px;
    }

    .header-logo-image {
        position: absolute;
        top: 420px;
        left: 700px;
        max-width: 450px;
        opacity: 0.6;
      }
}

/* POP - UP  */

.popup-container {
    z-index: 10;
    display: none;
    position: fixed;
    top: 2.5%;
    left: 2.5%;
    width: 95%;
    height: 95%;
    background: rgb(255, 255, 255);
    justify-content: center;
    align-items: center;
    border-radius: 10px;
 }
 .popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 1000px;
    /* overflow: hidden; */
    overflow-y: auto; /* Enables scrolling within the pop-up */
    max-height: 90vh; /* Prevents pop-up from exceeding the viewport height */
    display: flex;
    flex-direction: column;
 }
 .popup-container h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
    overflow: hidden;
 }
 
 .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    color: #8b6e47;
    cursor: pointer;
 }
 
 .img-popup {
  position: absolute;
  width: 100px;
  height: auto;
  top: 30px;
  left: 40px;
 }
 
 .iframe-container {
    width: 100%;
    height: 700px; /* Increased height for better visibility */
    padding-top: 100px;
    overflow: auto; /* Enable scrolling */
    flex-grow: 1;
 }
 iframe {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
 }
 
 .iframe-container::-webkit-scrollbar {
    width: 2px; /* Customize scrollbar height */
 }
 
 .iframe-container::-webkit-scrollbar-thumb {
    background-color: #91713c; /* Color of the scrollbar */
    border-radius: 10px;
 }
 
 
 @media (max-width: 768px) {
    .popup-content {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    /* .popup-container h2 {
        position: absolute;
        top: 15px;
        left: 20px;
        font-size: 22px;
    } */
    .iframe-container {
        height: 800px; /* Adjust iframe height for smaller screens */
    }
    .img-popup {
        width: 50px;
        opacity: 0.5;
        top: 20px;
      }
 
    .close-btn {
        font-size: 30px; 
        right: 25px; 
    }
    .iframe-container::-webkit-scrollbar {
        display: none;
        /* width: 1px; Customize scrollbar height */
    }
 }