  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: white;
            min-height: 100vh;
            color: #333;
        }
        li{
            list-style-type: none;
        }
       /* HEADER */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            background: transparent;
            color: #fff;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            transition: all 0.3s ease;
            background-color: black;
            box-sizing: border-box;
        }

        .header.scrolled {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .logo img {
            height: 40px;
        }

        .nav-right {
            display: flex;
            align-items: center;
        }

        .nav-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        /* SEARCH BOX */
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
            margin-right: 15px;
        }

        .search-input {
            background: transparent;
            border: transparent;
            color: #fff;
            font-size: 14px;
            width: 150px;
            outline: none;
            border-radius: 5px;
            margin-right: 20px;
        }

        .search-input::placeholder {
            color: #ccc;
        }

        .nav-icons a {
            color: #fff;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .nav-icons a:hover {
            color: #c00;
        }

        .nav-icons a img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
        }

        /* HAMBURGER MENU */
        .hamburger {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 8px;
            margin-left: 15px;
            z-index: 101;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            position: relative;
        }

        .hamburger:hover {
            background-color: rgba(255, 255, 255, 0.288);
        }

        .hamburger-img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
            opacity: 1;
        }

        .hamburger-lines {
            position: absolute;
            display: flex;
            flex-direction: column;
            width: 25px;
            height: 18px;
            justify-content: space-between;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hamburger-lines span {
            width: 25px;
            height: 3px;
            background-color: #fff;
            transition: 0.3s;
            transform-origin: center;
        }

        .hamburger.active .hamburger-img {
            opacity: 0;
        }

        .hamburger.active .hamburger-lines {
            opacity: 1;
        }

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

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

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

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 150px;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 70px 20px 20px;
            z-index: 99;
            transition: right 0.3s ease;
            box-shadow: -2px 0 5px rgba(0,0,0,0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul li {
            margin: 20px 0;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
        }

        .mobile-menu ul li:last-child {
            border-bottom: none;
            text-decoration: none;
        }

        .mobile-menu ul li a {
            color: #fff;
            font-size: 0.8rem;
            display: block;
            padding: 10px 0;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .mobile-menu ul li a:hover {
            color: #c00;
            text-decoration: none;
        }

        /* OVERLAY */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 98;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
            text-decoration: none;
        }
        .nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-left a {
            color: #666;
            text-decoration: none;
            margin-right: 30px;
            font-size: 14px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            text-align: center;
        }
        
        .main-title {
            font-size: 48px;
            font-weight: 300;
            letter-spacing: 8px;
            margin-bottom: 40px;
            color: #333;
        }
        
        .subtitle {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .chinese-calligraphy {
            font-size: 120px;
            font-weight: bold;
            color: #000;
            margin: 60px 0;
            font-family: 'KaiTi', serif;
        }
        
   .contact-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.contact-icon {
    background: #dc3545;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.contact-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    line-height: 1.3;
}

.contact-value {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}
        
        .form-section {
            margin-top: 80px;
            position: relative;
        }
        
        .form-title {
            font-size: 18px;
            font-weight: 300;
            letter-spacing: 4px;
            margin-bottom: 60px;
            color: #333;
        }
        
        .form-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .form-left {
            flex: 1;
            max-width: 500px;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .form-group {
            flex: 1;
        }
        
        .form-group.full-width {
            flex: none;
            width: 100%;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }
        
        .form-input {
            width: 200px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 14px;
            background: white;
        }
        
        .form-textarea {
            width: 650px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 14px;
            background: white;
            resize: vertical;
            min-height: 120px;
        }
        
        .captcha-section {
            margin: 30px 0;
        }
        
        .captcha-label {
            font-size: 14px;
            color: #333;
            margin-bottom: 10px;
            display: flex;
        }
        
        .captcha-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .captcha-input {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 3px;
            width: 80px;
            text-align: center;
        }
        
        .captcha-refresh {
            background: #f0f0f0;
            border: 1px solid #ddd;
            padding: 8px;
            border-radius: 3px;
            cursor: pointer;
        }
        
        .captcha-text {
            font-size: 12px;
            color: #666;
        }
        
        .checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 20px 0;
            text-align: left;
        }
        
        .checkbox {
            margin-top: 3px;
        }
        
        .checkbox-text {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }
        
        .submit-btn {
            background: #000000;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            font-size: 14px;
            margin-top: 20px;
            border-radius: 10px;
        }
        
        .submit-btn:hover {
            background: #555;
        }
        
        .dragon-illustration {
            flex-shrink: 0;
            margin-left: 50px;
            margin-top: -50px;
        }
        
        .dragon-svg {
            width: 300px;
            height: 400px;
        }
        



          .footer {
           background-image: url('czarneeenoze.png');
            color: #ffffff;
            padding: 50px 0 20px 0; 
            width: 100vw; 
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: 0;
            margin-bottom: 0;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .przezroczystoscc {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1;
            pointer-events: none;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            color: #ffffff;
            padding: 0 30px; 
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 60px;
        }

        .footer-column h4 {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 8px;
            font-size: 14px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #dc2626;
        }

        .footer-column p {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .footer-column h4.invisible {
            opacity: 0;
            visibility: hidden;
            height: 19px;
            margin-top: 8px;
        }

        .payment-icons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 15px;
        }

        .payment-icons img {
            height: 40px;
            padding: 5px;
            border-radius: 4px;
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #333;
            text-align: center;
            font-size: 0.8rem;
            color: #ccc;
            position: relative;
            z-index: 2;
        }

        .footer-bottom p {
            margin-bottom: 5px;
        }

        .leftright {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 5px;
            position: relative;
            z-index: 2;
            font-size: 12px;
            font-weight: 400;
            margin-left: 20px;
            margin-right: 20px;
        }

        .leftright p {
            margin: 0;
            font-weight: 400;
            font-size: 12px;
            color: #ccc;
        }

        @media (max-width: 768px) {
            .contact-info {
                flex-direction: column;
                gap: 30px;
                align-items: center;
            }
            
            .form-container {
                flex-direction: column;
            }
            
            .dragon-illustration {
                margin-left: 0;
                margin-top: 30px;
            }
            
            .form-row {
                flex-direction: column;
            }
            
            .chinese-calligraphy {
                font-size: 80px;
            }
        }

        @media (max-width: 768px) and (orientation: landscape) {
    .banner-slider {
        height: 100vh;
    }
    
    .slider-container {
        height: 100vh;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
        margin: 10px 0;
    }
    
    .logov2 {
        width: 150px;
        height: 40px;
    }
    
    .slider-navigation {
        bottom: 15px;
    }
}


  @media (max-width: 768px) {

    .header {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-icons {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-left: 10px;
    }
    
   
    .banner-slider {
        height: 70vh;
    }
    
    .slider-container {
        height: 70vh;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin: 15px 0;
    }
    
    .logov2 {
        width: 200px;
        height: 55px;
    }
    
    .btn-zobaczz {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .slider-navigation {
        bottom: 20px;
    }
    
    .prev-btn, .next-btn {
        padding: 8px 12px;
        font-size: 16px;
    }
    
    /* Footer mobile - już jest w oryginalnym CSS */
    .footer {
        padding: 30px 15px 15px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo {
        order: -1;
        text-align: center;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        justify-items: center;
    }
    
    .payment-icons img {
        height: 25px;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .leftright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .leftright p {
        font-size: 11px;
    }
    
    .left, .right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile */
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .logov2 {
        width: 180px;
        height: 50px;
    }
    
    .btn-zobaczz {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .footer-columns {
        gap: 20px;
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-column ul li {
        font-size: 13px;
    }
    
    .footer-column p {
        font-size: 13px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-icons img {
        height: 22px;
    }
}