        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

@font-face {
	font-family: Lato;
	src: url(../fonts/lato-regular.ttf);
	font-display: swap;
}
        
        body {
            font-family: 'Lato', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Lato', sans-serif;
            font-weight: 600;
            color: #1a3c6e;
        }
 a {
text-decoration: none;
color: #000;
}   
 a:hover {    
color: red;
}
 
        .container {
            max-width: 1920px;
            width: 100%;
            margin: 0 auto;
        }
        
        /* Nagłówek */
        header {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            max-width: 1920px;
            margin: 0 auto;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-img {
            height: 70px;
            margin-right: 15px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text h1 {
            font-size: 10px;
            margin: 0;
            text-indent: -999em; 
        }
        
        .logo-text p {
            font-size: 14px;
            color: #4a6fa5;
            font-weight: 500;
	    margin: -15px 0 0 0;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #1a3c6e;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #e67e22;
            left: 0;
            bottom: -5px;
            transition: width 0.3s;
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .contact-header {
            background-color: #e67e22;
            color: white;
            padding: 10px 22px;
            border-radius: 4px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .contact-header:hover {
            background-color: #d35400;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 60, 110, 0.85), rgba(26, 60, 110, 0.9)), url('../images/baner.webp');
            background-size: cover;
            background-position: center;
            height: 600px;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .hero h2 {
            font-size: 48px;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin-bottom: 30px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .btn-primary {
            background-color: #e67e22;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* Sekcje */
        section {
            padding: 80px 40px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Usługi */
        .services {
            background-color: #fff;
        }
        
        .services-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .service-card {
            background: #E5E5E6;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 220px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

          .product {
            background-color: #fff;
        }
        
        .product-container {
            display: block;

            max-width: 1400px;
            margin: 0 auto;

        }

.product-container h2 {
 font-size: 36px;
padding: 20px 0;
}
.product-container p {
 font-size: 18px;

}      
.product-container img {
display: block;
margin: 20px auto;
width: 100%; max-width: 800px;

}  


         .product-card {
            background: #E5E5E6;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            height: 220px;
            overflow: hidden;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.05);
        }
        
        .product-container {
            padding: 30px;
        }
        
        .product-container h3 {
            font-size: 22px;
            padding: 15px 0 ;
}   
        
        /* O nas */
        .about {
            background-color: #f8f9fa;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            gap: 60px;
        }
        
        .about-img {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;

        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .about-content p {
            margin-bottom: 20px;
            font-size: 17px;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature {
            display: flex;
            align-items: flex-start;
        }
        
        .feature i {
            color: #e67e22;
            font-size: 22px;
            margin-right: 15px;
            margin-top: 3px;
        }
        
        /* Kontakt */
        .contact {
            background-color: #fff;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 25px;
        }
        
        .contact-details {
            margin-top: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-item i {
            color: #e67e22;
            font-size: 20px;
            width: 40px;
        }
        
        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        
        .form-control {
            padding: 14px; 
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            font-family: 'Open Sans', sans-serif;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #e67e22;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }


 iframe {
	    display: block;
            width: 100%;
            max-width: 1400px;
	    height: 450px;
            margin: 0 auto;
	    background-color: #1a3c6e;
	    border: 0;
	    margin-bottom: 20px;
        }

        
        /* Stopka */
        footer {
            background-color: #1a3c6e;
            color: white;
            padding: 50px 40px 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-logo h3 {
            color: white;
            font-size: 26px;
            margin-bottom: 10px;
        }
        
        .footer-logo p {
            color: #b0c4de;
            font-size: 14px;
        }
        
        .footer-links h4, .footer-services h4, .footer-contact h4 {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4:after, .footer-services h4:after, .footer-contact h4:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: #e67e22;
            bottom: 0;
            left: 0;
        }
        
        .footer-links ul, .footer-services ul {
            list-style: none;
        }
        
        .footer-links li, .footer-services li {
            margin-bottom: 12px;
        }
        
        .footer-links a, .footer-services a {
            color: #b0c4de;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover, .footer-services a:hover {
            color: white;
        }
        
        .footer-contact p {
            color: #b0c4de;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: #e67e22;
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid #2a4c7e;
            color: #b0c4de;
            font-size: 14px;
            max-width: 1400px;
            margin: 40px auto 0;
        }
        
        /* Responsywność */
        @media (max-width: 1200px) {
            .services-container, .features {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .about-container, .contact-container {
                grid-template-columns: 1fr;
            }
            
            .nav-menu {
                display: none;
            }
            
            .hero h2 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .services-container, .features {
                grid-template-columns: 1fr;
            }
            
            .hero {
                height: 500px;
            }
            
            .hero-content {
                padding: 0 20px;
            }
            
            section {
                padding: 60px 5px;
            }
            
            .header-container {
                padding: 15px 20px;
            }

        .product-container {
	    display: block;
	    width: 100%;
	    padding: 0;
	    margin: 0;

        }

.product-container h2 {
 font-size: 36px;
padding: 20px 0;
}
.product-container p {
 font-size: 18px;
}      
.product-container img {
display: block;
margin: 20px auto;
width: 100%; max-width: 800px;
}  

            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                text-align: center;
            }

        .about-img {
	display: none;
            float: none;
	width: 100%;
        }
        
        .about-content {
            float: none;
	width: 100%;
        }
        
        }

