* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
	background: linear-gradient(135deg, #f0f5fa 0%, #e6eef5 50%, #dbe6f0 100%);
	
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(66, 153, 225, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(66, 153, 225, 0.1);
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 35px rgba(66, 153, 225, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 8px rgba(66, 153, 225, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.nav-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Zmieniony gradient na minimalnie mniej niebieski */
    /* Przykład: lekko przesunięte kolory w stronę szarości */
    background: linear-gradient(135deg, #3b91d4 0%, #2d79c1 50%, #266cb9 100%); 
    /* background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2973cc 100%); */ /* Stary kolor */
    opacity: 0; /* Początkowo niewidoczny */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
    border-radius: 5px;  /* Jeśli ::before nie dziedziczy border-radius, dodaj to */
    /* border-radius jest już ustawiony na a i powinien być przycinany przez overflow:hidden */
}

.nav-item a:hover::before {
    opacity: 1; /* Zmiana na widoczny po najechaniu */
    /* transform: translateY(0); */ /* Ta linia nie jest już potrzebna, 
                                      ponieważ ::before nie jest przesuwany, tylko zmienia przezroczystość */
}

.nav-item a:hover {
    color: white;
    /* transform: translateY(-3px); */ /* Opcjonalnie, możesz zostawić efekt unoszenia */
    box-shadow: 0 8px 25px rgba(59, 145, 212, 0.3); /* Również lekko ciemniejszy cień */
    /* box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3); */ /* Stary cień */
}
.search-bar {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 25px;
    padding: 10px 24px;
    min-width: 250px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-bar:hover {
    border-color: rgba(66, 153, 225, 0.3);
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.1);
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    padding: 8px;
    flex: 1;
    color: #2d3748;
}

.search-btn {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: 
    linear-gradient(135deg, rgba(113, 148, 180, 0.9) 0%, rgba(93, 123, 158, 0.8) 50%, rgba(78, 105, 140, 0.9) 100%), 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="%23ffffff15" stroke-width="1"/></pattern><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23ffffff10"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
	background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="%23ffffff20"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/><animate attributeName="r" values="2;4;2" dur="4s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="2.5" fill="%23ffffff15"><animate attributeName="opacity" values="0;1;0" dur="5s" repeatCount="indefinite"/><animate attributeName="r" values="1.5;3;1.5" dur="5s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="2" fill="%23ffffff25"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/><animate attributeName="r" values="1;2.5;1" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="50" r="1.5" fill="%23ffffff30"><animate attributeName="opacity" values="0;1;0" dur="6s" repeatCount="indefinite"/><animate attributeName="r" values="1;3;1" dur="6s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: floatBubbles 25s linear infinite;
}

@keyframes floatBubbles {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: heroContentFloat 6s ease-in-out infinite;
}

@keyframes heroContentFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 24px;
    animation: slideInDown 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(135deg, #ffffff 0%, #e6fffa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: slideInUp 1.2s ease-out 0.5s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 35px;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(15px);
    animation: fadeInScale 1.2s ease-out 1s both;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

/* Search Section */
.search-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="searchPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%234299e120"/></pattern></defs><rect width="100%" height="100%" fill="url(%23searchPattern)"/></svg>');
    position: relative;
    overflow: hidden;
	border-radius: 20px;
}

.search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.08) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
	
}

.search-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2973cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.main-search {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background: white;
    border-radius: 50px;
    box-shadow: 
        0 15px 45px rgba(66, 153, 225, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid rgba(66, 153, 225, 0.1);
    transition: all 0.3s ease;
}

.main-search:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 60px rgba(66, 153, 225, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(66, 153, 225, 0.3);
}

.main-search input {
    flex: 1;
    padding: 22px 35px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #2d3748;
    background: transparent;
}

.main-search button {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border: none;
    color: white;
    padding: 22px 45px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.main-search button:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2973cc 100%);
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.05) 0%, transparent 100%);
    transform: skewX(-15deg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 35px;
    color: #2d3748;
    background: linear-gradient(135deg, #4299e1 0%, #2973cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

.about-image {
    position: relative;
    height: 450px;
    border-radius: 25px;
	background: linear-gradient(135deg, #f0f4f8 0%, #e1e8f0 50%, #d4dde8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    font-weight: bold;
    box-shadow: 
        0 25px 70px rgba(66, 153, 225, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.about-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 90px rgba(66, 153, 225, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Offer Section */
.offer-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexPattern" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,7 18,13 10,18 2,13 2,7" fill="none" stroke="%234299e108" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexPattern)"/></svg>');
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top, rgba(66, 153, 225, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(49, 130, 206, 0.08) 0%, transparent 50%);
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.offer-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2973cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.offer-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding: 45px;
    border-radius: 25px;
    border: 1px solid rgba(66, 153, 225, 0.15);
    box-shadow: 
        0 15px 40px rgba(66, 153, 225, 0.1),
        0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2973cc 100%);
    border-radius: 25px 25px 0 0;
}

.offer-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.offer-card:hover::after {
    opacity: 1;
    animation: ripple 1.5s ease-out;
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

.offer-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 30px 70px rgba(66, 153, 225, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-color: rgba(66, 153, 225, 0.3);
}

.offer-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.offer-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.offer-card:hover .offer-icon::before {
    left: 100%;
}

.offer-card:hover .offer-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(66, 153, 225, 0.5);
    background: linear-gradient(135deg, #3182ce 0%, #2973cc 100%);
}

.offer-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #2d3748;
    font-weight: 700;
    text-align: center;
    transition: color 0.3s ease;
}

.offer-card:hover h3 {
    color: #3182ce;
}

.offer-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.05rem;
}

/* Products Section */
.products-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(66, 153, 225, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(49, 130, 206, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%234299e120"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="90" cy="20" r="1.5" fill="%233182ce15"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/></circle><circle cx="30" cy="80" r="0.8" fill="%234299e125"><animate attributeName="opacity" values="0;1;0" dur="5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 30s linear infinite;
}

.products-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.random-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ewentualna klasa dla treści wewnątrz karty (np. opis) */
.product-card .card-content {
    flex-grow: 1; /* Rozciąga zawartość, żeby wyrównać wysokość */
}

/* Reszta twoich stylów */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.2), transparent);
    transition: left 0.6s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(66, 153, 225, 0.4);
    box-shadow: 0 15px 40px rgba(66, 153, 225, 0.2);
}

.product-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: rotate(360deg) scale(1.1);
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(66, 153, 225, 0.03) 0%, transparent 8%),
        radial-gradient(circle at 90% 80%, rgba(66, 153, 225, 0.03) 0%, transparent 8%);
    background-size: 1000px 600px;
}

.values-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20%;
    width: 40%;
    height: 80%;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.05) 0%, transparent 100%);
    transform: skewX(15deg);
}
.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2973cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.value-card {
    text-align: center;
    padding: 50px 30px;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.value-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(66, 153, 225, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    box-shadow: 0 15px 40px rgba(66, 153, 225, 0.1);
}

.value-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.8rem;
    font-weight: bold;
    box-shadow: 0 10px 35px rgba(66, 153, 225, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(-45deg);
    transition: transform 0.6s ease;
}

.value-card:hover .value-icon::before {
    transform: rotate(-45deg) translateX(100%);
}

.value-card:hover .value-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 50px rgba(66, 153, 225, 0.4);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #2d3748;
    font-weight: 700;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: #3182ce;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff20"><animate attributeName="cy" values="20;80;20" dur="15s" repeatCount="indefinite"/></circle><circle cx="50" cy="50" r="1" fill="%23ffffff10"><animate attributeName="cx" values="50;80;50" dur="12s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1" fill="%23ffffff20"><animate attributeName="cy" values="30;70;30" dur="18s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: contactFloat 20s linear infinite;
    opacity: 0.6;
    z-index: 0;
}

.contact-section > * {
    position: relative;
    z-index: 1;
}

@keyframes contactFloat {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(5px); }
    50% { transform: translateY(0px) translateX(0px); }
    75% { transform: translateY(10px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}
.contact-section h2 {
    font-size: 2.8rem;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-section p {
    font-size: 1.3rem;
    margin-bottom: 45px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 35px;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%234299e108" opacity="0.5"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="%233182ce06" opacity="0.3"><animate attributeName="opacity" values="0;1;0" dur="6s" repeatCount="indefinite"/></circle></svg>') repeat;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: white;
    background: white /*linear-gradient(135deg, #4299e1 0%, #ffffff 100%)*/;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p, .footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    line-height: 1.7;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.footer-section a:hover {
    color: #4299e1;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 40px;
    text-align: center;
    color: #a0aec0;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

/* Page-specific styles for subpages */
.page-header {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(66, 153, 225, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(49, 130, 206, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%234299e120"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="90" cy="20" r="1.5" fill="%233182ce15"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/></circle><circle cx="30" cy="80" r="0.8" fill="%234299e125"><animate attributeName="opacity" values="0;1;0" dur="5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 30s linear infinite;
}

/* Wspólne style */
.page-header h1 { text-align: center; font-size: 3.5rem; margin-bottom: 25px; position: relative; z-index: 2; text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); animation: slideInDown 1s ease-out; } /* Styl dla paragrafu p w .page-header pozostaje bez zmian */ 
.page-header p { text-align: center; font-size: 1.3rem; opacity: 0.95; max-width: 700px; margin: 0 auto; position: relative; z-index: 2; text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2); line-height: 1.6; animation: slideInUp 1s ease-out 0.3s both; }


.page-content {
	padding: 100px;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,248,255,0.95) 100%),
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    position: relative;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(0,0,0,0.02) 50px, rgba(0,0,0,0.02) 52px);
    pointer-events: none;
}



.content-section {
    margin-bottom: 80px;
    position: relative;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d3748;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2973cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 2px;
}

.content-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.content-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 252, 0.9) 100%);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(66, 153, 225, 0.15);
    box-shadow: 
        0 15px 40px rgba(66, 153, 225, 0.08),
        0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2973cc 100%);
    border-radius: 25px 25px 0 0;
}

.content-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.1), transparent);
    transition: left 0.6s ease;
}

.content-card:hover::after {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(66, 153, 225, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.95) 100%);
    border-color: rgba(66, 153, 225, 0.3);
}

.content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 22px;
    color: #2d3748;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #4299e1 0%, #2973cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 18px;
    text-align: left;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card strong {
    color: #2d3748;
    font-weight: 600;
}

.content-card a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.content-card a:hover {
    color: #3182ce;
    border-bottom-color: #3182ce;
    transform: translateY(-1px);
}

/* Contact Form Styles */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 252, 0.9) 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 
        0 20px 50px rgba(66, 153, 225, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(66, 153, 225, 0.2);
    backdrop-filter: blur(15px);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2d3748;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(66, 153, 225, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 35px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(66, 153, 225, 0.4);
    background: linear-gradient(135deg, #3182ce 0%, #2973cc 100%);
}

/* Search Results Enhanced Styles */
.search-results {
    margin-top: 25px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 252, 0.9) 100%);
    border-radius: 25px;
    border: 1px solid rgba(66, 153, 225, 0.15);
    box-shadow: 
        0 15px 40px rgba(66, 153, 225, 0.1),
        0 5px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    animation: searchResultsSlideIn 0.5s ease-out;
}

.search-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2973cc 100%);
    border-radius: 25px 25px 0 0;
}

.search-results a {
    display: block;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(66, 153, 225, 0.1);
    border-radius: 18px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.search-results a:last-child {
    margin-bottom: 0;
}

.search-results a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(66, 153, 225, 0.1) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.search-results a:hover::before {
    left: 100%;
}

.search-results a:hover {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(66, 153, 225, 0.3);
    color: #2d3748;
    transform: translateY(-3px) translateX(5px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(66, 153, 225, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animation keyframes */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from { 
        opacity: 0; 
        transform: scale(0.8);
    }
    to { 
        opacity: 1; 
        transform: scale(1);
    }
}

@keyframes searchResultsSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 8px 25px rgba(66, 153, 225, 0.15);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .search-bar {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        height: 300px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .random-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-header h1 {
        font-size: 2.8rem;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #2d3748;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #4299e1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Link styles */
.offer-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.offer-card-link:hover {
    color: inherit;
    text-decoration: none;
}

/* Additional utility styles */
#searchResults {
    display: none;
}

.logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(66, 153, 225, 0.3));
}

.submit-btn {
    background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 85, 104, 0.3);
}

.offer-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }

        .offer-card-link:hover {
            color: inherit;
            text-decoration: none;
        }

        .offer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .offer-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(74, 85, 104, 0.1);
            box-shadow: 
                0 10px 30px rgba(74, 85, 104, 0.08),
                0 1px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .offer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #4a5568 0%, #718096 50%, #667eea 100%);
            border-radius: 20px 20px 0 0;
        }

        .offer-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(74, 85, 104, 0.15),
                0 10px 30px rgba(0, 0, 0, 0.1);
            background: linear-gradient(145deg, #ffffff 0%, #f1f3f4 100%);
        }

        .offer-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            box-shadow: 0 8px 25px rgba(74, 85, 104, 0.3);
            transition: all 0.3s ease;
        }

        .offer-card:hover .offer-icon {
            transform: rotate(5deg) scale(1.1);
            box-shadow: 0 12px 35px rgba(74, 85, 104, 0.4);
        }

        .offer-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
            font-weight: 700;
            text-align: center;
        }

        .offer-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
            text-align: center;
        }

        .card-features {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: auto;
        }

        .feature-badge {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Featured Products Section */
        .featured-products {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 60px 40px;
            border-radius: 20px;
            margin: 40px 0;
        }

        .products-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .product-showcase-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .product-showcase-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .product-formula {
            font-size: 2rem;
            font-weight: bold;
            color: #4a5568;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #4a5568 0%, #667eea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .product-showcase-card h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #333;
        }

        .product-showcase-card p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .product-specs {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .product-specs span {
            background: #f8f9fa;
            padding: 3px 10px;
            border-radius: 10px;
            font-size: 0.8rem;
            color: #555;
        }

        /* Services Section */
        .services-section {
            margin: 60px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .service-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #f1f3f4;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: #4a5568;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(74, 85, 104, 0.1);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .service-card h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Industries Section */
        .industries-section {
            background: linear-gradient(135deg, #333 0%, #4a5568 100%);
            padding: 60px 40px;
            border-radius: 20px;
            color: white;
            margin: 60px 0;
        }

        .industries-section h2 {
            color: white;
            text-align: center;
        }

        .industries-section p {
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            margin-bottom: 40px;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .industry-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .industry-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .industry-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .industry-card h4 {
            color: white;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .industry-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .offer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .products-showcase {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .industries-grid {
                grid-template-columns: 1fr;
            }
        }

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	header.page-header,
    .page-header {
        padding: 60px 4px 4px 4px;   /* Duży padding-top dla menu */
        margin: 0;
    }
    
    /* Lub alternatywnie dodaj margin-top */
    .page-header h1 {
        margin-top: 100px;            /* Przestrzeń nad nagłówkiem */
        margin-bottom: 0;
        padding-bottom: 0;
        line-height: 1.1;
    }
	
	body {
        padding-top: 60px;           /* Przestrzeń dla fixed header */
    }
    
    /* Lub dla konkretnej sekcji pod menu */
    .page-content,
    main {
        padding-top: 60px;           /* Dodatkowa przestrzeń na górze */
    }
	
    .container,
    .nav-container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 8px;           /* Znacznie mniejsze paddingi */
        box-sizing: border-box;
    }
    
    /* Drastycznie zmniejszone nagłówki */
    h1, .page-header h1 {
        font-size: 1.4rem;      /* Znacznie mniejsze */
        line-height: 1.1;
        margin: 8px 0;          /* Mniejsze marginesy */
    }
    
    .container p {
        font-size: 0.9rem;      /* Mniejsze paragrafy */
        margin: 6px 0;          /* Mniejsze odstępy */
    }
    
    .container h2 {
        font-size: 1.5rem;      /* Kompaktowe h2 */
        margin: 10px 0;
    }
    
    h2 {
        font-size: 1.2rem;
        line-height: 1.2;
        margin: 8px 0;
    }
    
    h3 {
        font-size: 1rem;
        margin: 6px 0;
    }
    
    body,
    p,
    .offer-card p,
    .services-section p,
    .contact-section p {
        font-size: 0.85rem;     /* Mniejsze teksty */
        line-height: 1.4;
        margin: 4px 0;
    }
    
    /* Kompaktowe sekcje treści */
    .content-section h2 {
        padding: 15px 8px;      /* Znacznie mniejsze paddingi */
        font-size: 1.3rem;
    }
    
    .content-section p {
        font-size: 0.9rem;
        margin: 6px 0;
    }
    
    /* Siatka treści - 2 kolumny z mniejszymi odstępami */
    .content-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;               /* Mniejsze odstępy */
        padding: 8px;
    }
    
    .content-card {
        padding: 10px;          /* Kompaktowe karty */
    }
    
    .content-card p {
        font-size: 0.8rem;
        margin: 4px 0;
    }
    
    .content-card h3 {
        font-size: 1.1rem;
        margin: 6px 0;
    }
    
    /* Karty ofertowe - jedna kolumna, kompaktowe */
    .offer-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 8px;
    }
    
    .offer-card,
    .service-card {
        width: 100%;
        max-width: 100%;
        padding: 12px;          /* Mniejsze wewnętrzne odstępy */
        margin: 0;
        box-sizing: border-box;
    }
    
    /* Kompaktowe inputy i przyciski */
    .main-search input,
    .main-search button {
        font-size: 0.85rem;
        padding: 8px 12px;      /* Mniejsze przyciski */
    }
    
    /* Boxy i modale - pełna szerokość */
    .box, .modal, .content-box {
        width: 100%;
        max-width: 100%;
        padding: 10px;
        margin: 8px 0;
        box-sizing: border-box;
    }
    
    /* Page content - maksymalne wykorzystanie */
    .page-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 8px;           /* Minimalne odstępy */
        box-sizing: border-box;
    }
    
    .page-content .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    /* Kompaktowa nawigacja */
    nav {
        padding: 8px;
    }
    
    nav ul {
        gap: 8px;               /* Mniejsze odstępy między linkami */
    }
    
    nav a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    /* Sekcje - minimalne paddingi */
    section {
        padding: 15px 8px;      /* Zamiast np. 40px */
        margin: 8px 0;
    }
    
    /* Obrazki - responsywne, bez zbędnych marginesów */
    img {
        max-width: 100%;
        height: auto;
        margin: 4px 0;
    }
}

/* Mobile Menu Toggle - kompaktowy */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Dodatkowe zmniejszenie odstępów globalnie */
    * {
        margin-top: 0;
    }
    
    /* Kompaktowy header */
    header {
        padding: 10px 8px;
    }
    
    /* Footer również kompaktowy */
    footer {
        padding: 15px 8px;
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}