/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
header .logo {
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    margin: -15px 0 -15px 0; /* Zmniejszam ujemne marginesy, aby logo nie wychodziło poza nagłówek */
    min-width: 60px; /* Dodaję minimalną szerokość */
    flex-shrink: 0; /* Zapobiegam zwężaniu logo */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

header .logo img {
    height: 60px; /* Stała wysokość logo */
    width: auto; /* Ustawiam szerokość na auto, aby zachować proporcje */
    filter: drop-shadow(0 0 10px rgba(0, 133, 182, 0.5));
    transition: all 0.7s ease;
    z-index: 1001; /* Zwiększam z-index, aby logo było zawsze widoczne ponad innymi elementami */
    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

header .logo:hover img {
    /* transform: scale(1.05); */ /* Usuwam efekt powiększenia */
    filter: drop-shadow(0 0 20px rgba(0, 133, 182, 0.8));
}

.logo::after {
    display: none;
}

/* Globalne style */
:root {
    --primary-color: #0085b6;
    --secondary-color: #6442bd;
    --accent-color: #00b890;
    --dark-color: #0a101f;
    --light-color: #f0f3ff;
    --darker-color: #1c2331;
    --medium-color: #2d3748;
    --text-light: #e2e8f0;
    --text-dark: #1a202c;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.5s ease;
    --glass-bg: rgba(44, 55, 72, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 133, 182, 0.6);
}

/* Globalne usunięcie podświetlenia dla wszystkich elementów interaktywnych */
a, button, input, select, textarea, [tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, [tabindex]:focus-visible {
    outline: none !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a:active, a:hover, a:visited, a:link {
    text-decoration: none !important;
    outline: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(100, 66, 189, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 133, 182, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #cbd5e0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover, .btn.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover:before, .btn.touch-active:before {
    left: 0;
}

.btn-outlined {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outlined:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outlined:hover, .btn-outlined.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: transparent;
}

.btn-outlined:hover:before, .btn-outlined.touch-active:before {
    left: 0;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header - wyższa wysokość */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 64, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* Usuwam padding górny i dolny */
    height: auto; /* Ustawiam automatyczną wysokość */
    overflow: visible;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 70px; /* Zmniejszam minimalną wysokość kontenera z 85px na 70px */
    position: relative;
}

/* Styl dla logo w nagłówku */
}

/* Przycisk menu hamburgerowego - domyślnie ukryty */
#mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 3px;
}

/* Animacja przycisku menu hamburger */
#mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

#mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

#mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff4136; /* Czerwony kolor dla X */
}

/* Efekt najechania dla przycisku menu */
#mobile-menu-toggle:hover .bar {
    background-color: var(--primary-color);
}

/* Dodaję wyższy poziom specyficzności, aby upewnić się, że style są stosowane */
body header #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background-color: #ff4136 !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
}

body header #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background-color: #ff4136 !important;
}

    min-height: 60px; /* Gwarantuje, że logo nie będzie mniejsze */
    object-fit: contain; /* Zapewnia poprawne skalowanie zachowujące proporcje */
}

}

.logo::after {
    display: none;
}

.logo:hover::after {
    display: none;
}

/* Futurystyczna nawigacja */
nav ul {
    display: flex;
    align-items: center;
    height: 100%;
}

nav ul li {
    margin-left: 30px;
    display: flex;
    align-items: center;
    position: relative;
}

nav ul li .nav-link {
    font-weight: 700;
    position: relative;
    overflow: hidden;
    padding: 8px 16px;
    margin: 0 5px;
    font-size: 1.15rem;
    color: var(--text-light);
    text-transform: uppercase;
    transition: transform 0.3s ease, color 0.3s ease;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none;
}

nav ul li .nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    box-shadow: 0 0 0 rgba(0, 133, 182, 0);
    border-radius: 8px;
}

nav ul li .nav-link:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

nav ul li .nav-link:hover:before {
    opacity: 0.15;
    box-shadow: 0 8px 25px rgba(0, 133, 182, 0.4);
}

/* Animacja menu tylko dla urządzeń mobilnych */
@media screen and (max-width: 768px) {
    /* Pokazuję przycisk menu hamburgerowego */
    #mobile-menu-toggle {
        display: block;
    }
    
    /* Style dla mobilnego menu */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark-color);
        z-index: 1600;
        transition: all 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Kiedy menu jest otwarte */
    nav.active {
        right: 0;
    }
    
    /* Nakładka przyciemniająca tło podczas otwartego menu */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1550;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        padding: 60px 0;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
        position: relative;
    }
    
    nav ul li .nav-link {
        font-size: 1.3rem;
        padding: 12px 15px;
        display: block;
        width: 100%;
        transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
        border-radius: 4px;
    }
    
    nav ul li .nav-link:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient);
        opacity: 0;
        z-index: -1;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: scale(0.9);
    }
    
    nav ul li .nav-link:hover, 
    nav ul li .nav-link:active,
    nav ul li .nav-link.touch-active {
        transform: translateY(-3px);
        color: white;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: 0 8px 20px rgba(0, 133, 182, 0.3);
    }
    
    nav ul li .nav-link:hover:before,
    nav ul li .nav-link:active:before,
    nav ul li .nav-link.touch-active:before {
        opacity: 0.15;
        transform: scale(1);
    }
    
    @keyframes navLinkPulse {
        0% { box-shadow: 0 0 0 0 rgba(0, 133, 182, 0.5); }
        70% { box-shadow: 0 0 0 10px rgba(0, 133, 182, 0); }
        100% { box-shadow: 0 0 0 0 rgba(0, 133, 182, 0); }
    }
    
    nav ul li .nav-link:active {
        animation: navLinkPulse 0.8s ease-out;
    }
    
    /* Animacja menu */
    nav.active {
        right: 0;
        animation: slideIn 0.3s forwards;
    }
    
    nav ul li {
        opacity: 1;
        transform: none;
    }
    
    nav.active ul li {
        animation: none;
    }
    
    nav.active ul li:nth-child(1) { --item-order: initial; }
    nav.active ul li:nth-child(2) { --item-order: initial; }
    nav.active ul li:nth-child(3) { --item-order: initial; }
    nav.active ul li:nth-child(4) { --item-order: initial; }
    nav.active ul li:nth-child(5) { --item-order: initial; }
}

.hero-content h1 {
    font-size: 2.4rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9); /* Mocniejszy cień tekstu */
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700; /* Zwiększona grubość czcionki */
    letter-spacing: 0.5px; /* Lepszy odstęp między literami */
    position: relative; /* Dodanie pozycji relatywnej dla pseudo-elementu */
    display: inline-block; /* Aby pseudo-element działał poprawnie */
    width: 100%; /* Pełna szerokość */
    text-transform: uppercase; /* Większe litery dla lepszej widoczności */
}

/* Kontener dla przycisków */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 20px auto 0;
    width: 100%;
}

/* Usuwam kształty tła */
.bg-shapes {
    display: none;
}

.shape {
    display: none;
}

/* Features Section */
#features {
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 90% 10%, rgba(100, 66, 189, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 10% 90%, rgba(0, 133, 182, 0.08) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--medium-color);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Płynniejsza animacja z efektem bouncy */
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--text-light);
    opacity: 1; /* Widoczne od razu */
    transform: perspective(1000px) rotateX(0) rotateY(0) scale(1); /* Perspektywa 3D */
    transform-style: preserve-3d; /* Zachowanie perspektywy 3D */
    transform-origin: center center;
    backface-visibility: hidden; /* Ukrycie tylnej części przy obrocie */
}

/* Usuwam pasek, zastępuję go efektem gradientu 3D */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.feature-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    /* Transformacja będzie dodawana dynamicznie przez JavaScript */
}

.feature-card:hover::after {
    opacity: 0.07; /* Subtelny gradient w tle przy najechaniu */
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 0 20px rgba(0, 133, 182, 0.4);
    transition: all 0.5s ease;
    transform: translateZ(20px);
}

.feature-card .icon i {
    font-size: 28px;
    color: white;
    transition: all 0.5s ease;
}

.feature-card:hover .icon {
    transform: translateZ(40px); /* Ikona przesuwa się bardziej do przodu ale bez obrotu */
    box-shadow: 0 0 30px rgba(0, 133, 182, 0.6);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    transition: all 0.5s ease;
    color: var(--text-light);
    transform: translateZ(10px); /* Tekst lekko do przodu */
}

.feature-card:hover h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: translateZ(25px); /* Tekst wysuwa się do przodu przy najechaniu */
}

.feature-card p {
    color: #a0aec0;
    font-size: 1.05rem;
    line-height: 1.7;
    transition: all 0.5s ease;
    transform: translateZ(5px); /* Minimalnie do przodu */
}

.feature-card:hover p {
    color: #cbd5e0; /* Jaśniejszy tekst przy najechaniu */
    transform: translateZ(15px); /* Tekst wysuwa się do przodu przy najechaniu */
}

/* Services Section */
#services {
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--medium-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: none !important;
    position: relative;
    color: var(--text-light);
    outline: 0px solid transparent;
    transform: none !important;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto; /* Zmieniamy na auto, aby umożliwić interakcję */
    user-select: text; /* Zmieniamy z none na text, aby umożliwić zaznaczanie tekstu */
    width: 100%; /* Ustawiam stałą szerokość */
    height: auto; /* Wysokość dostosuje się automatycznie */
    display: flex; /* Używam flexbox dla lepszej kontroli layoutu */
    flex-direction: column;
}

/* Całkowite usunięcie wszystkich efektów hover, active, focus dla kart usług */
.service-card:hover, .service-card:active, .service-card:focus, 
.service-card.touch-active, .service-card.active, .service-card:visited,
.service-card:focus-within, .service-card:target {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
    outline: none !important;
    border-color: transparent !important;
    opacity: 1 !important;
    background: var(--medium-color) !important;
    width: 100% !important; /* Wymuszam stałą szerokość */
    height: auto !important; /* Wysokość dostosuje się automatycznie */
}

.service-card .image-container {
    overflow: hidden; /* Nowy kontener dla obrazka z ukrytym nadmiarem */
    width: 100%;
    height: 180px;
    position: relative;
    flex: none; /* Zapobiega zmianie rozmiaru kontenera obrazu */
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) !important; /* Szybsza animacja (1.0s) z płynną krzywą ease-in-out */
    transform-origin: center center; /* Powiększanie zaczyna się od środka obrazka */
    pointer-events: none;
}

/* Dodajemy efekt powiększania tylko dla zdjęcia */
.service-card:hover img, .service-card:active img, .service-card:focus img,
.service-card.touch-active img, .service-card.active img {
    transform: scale(1.08) !important; /* Delikatniejsze powiększenie obrazka - zmniejszam z 1.2 (20%) na 1.08 (8%) */
}

.service-card h3 {
    padding: 25px 25px 8px; /* Zmniejszam padding dolny z 15px na 8px */
    font-size: 1.5rem;
    transition: transform 1s ease-out !important;
    color: var(--text-light) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    pointer-events: auto;
    user-select: text;
    flex: none;
    transform: none !important;
    margin-bottom: 0; /* Usuwam dolny margines, jeśli istnieje */
    text-align: center; /* Wyśrodkowanie tekstu */
    width: 100%; /* Pełna szerokość */
}

/* Dodajemy delikatny efekt powiększania dla nagłówka */
.service-card:hover h3, .service-card:active h3, .service-card:focus h3,
.service-card.touch-active h3, .service-card.active h3 {
    transform: scale(1.05) !important;
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

.service-card p {
    padding: 0 25px 25px;
    padding-top: 8px; /* Zmniejszam odstęp od góry, dodając jawnie padding-top */
    margin-top: 0; /* Usuwam górny margines, jeśli istnieje */
    color: #a0aec0;
    font-size: 1.05rem;
    pointer-events: auto;
    user-select: text;
    flex: 1;
    text-align: center; /* Wyśrodkowanie tekstu opisu również dla spójności */
}

/* Dodatkowe style, aby zapewnić brak interakcji na urządzeniach mobilnych */
@media (hover: hover) {
    .service-card:hover, .service-card:active {
        transform: none !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
    }
}

@media (hover: none) {
    .service-card {
        -webkit-tap-highlight-color: transparent !important;
    }
}

/* Testimonials Section */
#testimonials {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

#testimonials h2 {
    color: white;
}

#testimonials h2:after {
    background: white;
}

/* Styl dla licznika kilometrów - przywrócony do poprzedniego wyglądu */
.testimonial-kilometers {
    max-width: 900px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
}

.kilometer-counter {
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 35px;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-bottom: 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
    transform: perspective(1000px) rotateX(5deg);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    width: 100%; /* Zmieniam z 80% na 100%, aby wykorzystać całą szerokość kontenera */
    max-width: 900px; /* Zmieniam z 800px na 900px, aby dopasować do szerokości opinii */
    box-sizing: border-box; /* Uwzględniam padding i border w szerokości */
}

.counter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: nowrap; /* Zapobieganie zawijaniu tekstu */
}

.highlight-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #a0e6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    padding: 0 10px;
    margin: 0 5px;
    text-shadow: none;
    vertical-align: middle;
    min-width: 180px; /* Zmniejszam minimalną szerokość */
    text-align: right;
}

.kilometer-text {
    display: inline-block;
    vertical-align: middle;
    line-height: 3.5rem;
    position: relative;
    top: 4px;
    white-space: nowrap; /* Zapobiega łamaniu tekstu */
}

/* Usuwam style dla licznika lat doświadczenia */
.experience-counter {
    display: none;
}

.years-counter {
    display: none;
}

/* Style dla ikony X */
.x-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.x-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin: auto;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 1.2s ease;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.author {
    font-weight: 700;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
#contact {
    background: var(--dark-color);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 60px;
}

.contact-form {
    background: var(--medium-color);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group.focused label {
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 4px 15px rgba(0, 133, 182, 0.15);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: none;
    min-height: 120px;
    max-height: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Komunikat sukcesu dla formularza */
.success-message {
    background: linear-gradient(135deg, rgba(0, 242, 195, 0.1), rgba(0, 230, 255, 0.1));
    backdrop-filter: blur(5px);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 3px solid var(--accent-color);
    display: flex;
    align-items: center;
    color: #333;
}

.success-message i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Specjalny styl dla przycisku "Wyślij Zapytanie" */
.contact-form .btn {
    width: 100%;
    padding: 14px 28px;
    font-size: 1.1rem;
    letter-spacing: 1.2px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    background: var(--gradient);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 0 0 rgba(0, 133, 182, 0);
    border-radius: 30px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-form .btn i {
    margin-right: 12px;
    font-size: 1.25rem;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
    position: relative;
    top: -1px;
}

.contact-form .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scaleX(0);
    transform-origin: left;
}

.contact-form .btn:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 32px;
    background: transparent;
    border: 2px solid transparent;
    opacity: 0;
    z-index: -2;
    transition: all 0.4s ease;
}

.contact-form .btn:hover, .contact-form .btn.touch-active {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 133, 182, 0.4), 0 0 15px rgba(0, 184, 144, 0.3);
    color: white;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-form .btn:hover i, .contact-form .btn.touch-active i {
    transform: translateX(5px) rotate(15deg) scale(1.1);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.contact-form .btn:hover:before, .contact-form .btn.touch-active:before {
    transform: scaleX(1);
}

.contact-form .btn:hover:after, .contact-form .btn.touch-active:after {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-form .btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Podświetlenie aktywnej sekcji */
.section-highlight {
    pointer-events: none;
    position: absolute;
    z-index: 0;
    transition: opacity 1s ease;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 20px;
    box-shadow: 0 0 20px rgba(0, 133, 182, 0.4);
    overflow: hidden;
    position: relative;
}

.info-item .icon i {
    font-size: 1.4rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.social-media {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--medium-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    color: var(--primary-color);
}

.social-icon svg {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    color: var(--primary-color);
    width: 18px;
    height: 18px;
}

.social-icon.facebook svg {
    width: 13px;
    height: 22px;
}

/* Efekt tła dla ikon mediów społecznościowych */
.social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
    z-index: 1;
}

.social-icon:hover, .social-icon.touch-active, .social-icon.hover-effect {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icon:hover:before, .social-icon.touch-active:before, .social-icon.hover-effect:before {
    transform: scale(1);
    opacity: 1;
}

.social-icon:hover i, .social-icon:hover svg,
.social-icon.hover-effect i, .social-icon.hover-effect svg,
.social-icon.touch-active i, .social-icon.touch-active svg {
    color: white;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(140, 82, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 230, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: 60%;
    margin-top: 0; /* Usuwam margines górny */
}

.footer-logo img {
    height: 140px; /* Zmniejszam wysokość logo w stopce z 280px na 140px */
    margin-bottom: 15px; /* Dodaję odstęp pod logo */
    filter: drop-shadow(0 0 15px rgba(0, 133, 182, 0.5));
    position: relative;
    z-index: 2;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    font-weight: 500;
    max-width: 95%;
    margin: 0 auto 0; /* Usuwam ujemny margines górny, aby tekst był na właściwej wysokości */
    letter-spacing: 0.2px;
    line-height: 1.5;
    padding: 0 15px; /* Usuwam padding górny i dolny */
}

.footer-links {
    flex-basis: 35%;
    padding-top: 80px; /* Zwiększam padding na górze dla wyrównania z logo */
}

.footer-links h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 1.5px;
}

.footer-links ul li {
    margin-bottom: 16px; /* Zwiększam odstęp między elementami listy */
    position: relative;
    padding-left: 20px; /* Zwiększam padding z lewej dla miejsca na kropkę */
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    font-size: 1.15rem; /* Zwiększam rozmiar czcionki */
    display: block;
    position: relative;
    padding: 4px 0;
    font-weight: 500; /* Dodaję większą grubość czcionki */
}

/* Dodajemy subtelną ikonkę przed elementami listy */
.footer-links ul li a:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -20px; /* Odsuwam kropkę nieco dalej */
    top: 4px;
    opacity: 0.9; /* Zwiększam widoczność kropki */
    transition: var(--transition);
    font-size: 18px; /* Zwiększam rozmiar kropki */
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 133, 182, 0.4);
}

.footer-links ul li a:hover:before {
    opacity: 1;
    transform: scale(1.2);
    color: var(--accent-color);
}

.footer-newsletter p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
}

.footer-newsletter form {
    display: flex;
    gap: 15px;
}

.footer-newsletter input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Responsywność */
@media screen and (max-width: 1200px) {
    h2 {
        font-size: 2.4rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .contact-content {
        flex-direction: column;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 40px;
    }
    
    .contact-form, .contact-info {
        width: 100%;
        margin: 0;
    }
    
    .contact-form {
        grid-row: 1;
    }
    
    .contact-info {
        grid-row: 2;
    }
}

@media screen and (max-width: 768px) {
    /* Pokazuję przycisk menu hamburgerowego */
    #mobile-menu-toggle {
        display: block;
    }
    
    /* Style dla mobilnego menu */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark-color);
        z-index: 1600;
        transition: all 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Kiedy menu jest otwarte */
    nav.active {
        right: 0;
    }
    
    /* Nakładka przyciemniająca tło podczas otwartego menu */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1550;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        padding: 60px 0;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
        position: relative;
    }
    
    nav ul li .nav-link {
        font-size: 1.3rem;
        padding: 12px 15px;
        display: block;
        width: 100%;
        transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
        border-radius: 4px;
    }
    
    nav ul li .nav-link:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient);
        opacity: 0;
        z-index: -1;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: scale(0.9);
    }
    
    nav ul li .nav-link:hover, 
    nav ul li .nav-link:active,
    nav ul li .nav-link.touch-active {
        transform: translateY(-3px);
        color: white;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: 0 8px 20px rgba(0, 133, 182, 0.3);
    }
    
    nav ul li .nav-link:hover:before,
    nav ul li .nav-link:active:before,
    nav ul li .nav-link.touch-active:before {
        opacity: 0.15;
        transform: scale(1);
    }
    
    @keyframes navLinkPulse {
        0% { box-shadow: 0 0 0 0 rgba(0, 133, 182, 0.5); }
        70% { box-shadow: 0 0 0 10px rgba(0, 133, 182, 0); }
        100% { box-shadow: 0 0 0 0 rgba(0, 133, 182, 0); }
    }
    
    nav ul li .nav-link:active {
        animation: navLinkPulse 0.8s ease-out;
    }
    
    /* Animacja menu */
    nav.active {
        right: 0;
        animation: slideIn 0.3s forwards;
    }
    
    nav ul li {
        opacity: 1;
        transform: none;
    }
    
    nav.active ul li {
        animation: none;
    }
    
    nav.active ul li:nth-child(1) { --item-order: initial; }
    nav.active ul li:nth-child(2) { --item-order: initial; }
    nav.active ul li:nth-child(3) { --item-order: initial; }
    nav.active ul li:nth-child(4) { --item-order: initial; }
    nav.active ul li:nth-child(5) { --item-order: initial; }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .counter-container {
        min-width: unset; /* Usuń stałą szerokość na małych ekranach */
        width: 100%;
        flex-direction: row; /* Utrzymuj elementy obok siebie */
        flex-wrap: nowrap; /* Nie zawijaj elementów */
        justify-content: center; /* Wyśrodkowanie poziome */
    }
    
    .highlight-number {
        min-width: 120px; /* Mniejsza szerokość na mobilnych */
        text-align: right; /* Wyrównaj do prawej na mobilnych */
        margin-bottom: 0; /* Usuń odstęp pod liczbą */
        font-size: 2.8rem; /* Mniejsza czcionka */
    }
    
    .kilometer-text {
        text-align: left; /* Wyrównaj tekst do lewej */
        font-size: 1.4rem; /* Mniejsza czcionka */
        white-space: normal; /* Pozwól na zawijanie tekstu w razie potrzeby */
        line-height: 1.2; /* Mniejsza wysokość linii */
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        align-items: center;
    }
    
    .footer-logo p {
        font-size: 1.05rem;
        max-width: 90%;
        padding: 5px 10px;
    }
    
    .footer-links {
        width: 100%;
        text-align: center;
        padding-top: 10px;
    }
    
    .footer-links h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;  /* Zmniejszam odstęp z 15px na 8px, aby elementy były bliżej siebie */
    }
    
    .footer-links ul li {
        margin-bottom: 5px;  /* Zmniejszam margines z 10px na 5px */
        padding: 0;
        width: 100%;
        text-align: center;
        position: relative;
    }
    
    .footer-links ul li a {
        display: inline-block;
        font-size: 1.2rem;
        padding: 5px 0;  /* Zmniejszam padding z 8px na 5px */
        width: auto;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .footer-links ul li a:before {
        display: inline-block;
        content: '•';
        color: var(--primary-color);
        margin-right: 8px;
        opacity: 0.9;
        position: relative;
        top: 0;
        left: 0;
        font-size: 18px;
        transition: var(--transition);
    }
    
    .footer-links ul li a:hover:before,
    .footer-links ul li a:active:before,
    .footer-links ul li a.active:before {
        opacity: 1;
        transform: scale(1.2);
        color: var(--accent-color);
    }
    
    /* Poprawki dla linków w stopce na urządzeniach mobilnych */
    .footer-links ul li a {
        -webkit-tap-highlight-color: transparent; /* Usunięcie domyślnego podświetlania na urządzeniach mobilnych */
    }

    /* Wyraźne style aktywnego stanu dla dotknięcia na urządzeniach mobilnych */
    .footer-links ul li a:active,
    .footer-links ul li a.active,
    .footer-links ul li a:focus {
        color: white !important;
        text-shadow: 0 0 10px rgba(0, 133, 182, 0.4) !important;
        transform: translateX(5px) !important;
        outline: none !important;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
    
    section {
        padding: 80px 0;
    }
    
    .kilometer-counter {
        font-size: 1.5rem;
        padding: 20px;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
    
    .highlight-text {
        font-size: 1.2rem;
    }
    
    /* Wyśrodkowanie sekcji kontaktowej na urządzeniach mobilnych */
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 30px;
        grid-row: 2;
        width: 100%;
    }
    
    .info-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 25px;
        text-align: left;
        width: 80%;
        max-width: 300px;
    }
    
    .info-item .icon {
        margin-right: 15px;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        min-width: 60px;
    }
    
    .info-item p {
        font-size: 1.1rem;
        text-align: left;
        padding: 0;
    }
}

/* Dodatkowe styles dla bardzo małych ekranów (telefony mobilne) */
@media screen and (max-width: 480px) {
    /* Zmniejszenie odstępów i marginesów dla lepszego wykorzystania przestrzeni */
    .container {
        width: 100%;
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Mniejsze logo */
    header .logo {
        flex-shrink: 0;
        min-width: 60px;
    }
    
    header .logo img {
        height: 60px !important; /* Wymuszam stałą wysokość */
        min-height: 60px !important;
        width: auto !important;
        object-fit: contain !important;
        transform: none !important; /* Zapobiegam transformacjom */
    }
    
    /* Ogólne zmniejszenie paddingu */
    section {
        padding: 50px 0;
    }
    
    /* Mniejsze nagłówki */
    h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    /* Naprawiona sekcja hero dla telefonów */
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .hero-content p {
        font-size: 1.0rem;
        margin-bottom: 20px;
        padding: 0 5px;
        line-height: 1.5;
    }
    
    /* Przyciski w hero - dodatkowe poprawki dla większej niezawodności */
    .hero-content .btn {
        opacity: 1 !important; /* Wymuszamy pełną widoczność */
        margin: 10px auto;
        width: 85%;
        max-width: 260px;
        display: block;
        text-align: center;
        padding: 14px 20px;
        font-size: 1rem;
        position: relative;
        z-index: 10; /* Zwiększamy z-index, aby przyciski były zawsze na wierzchu */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Lepszy cień dla widoczności */
    }
    
    /* Poprawka dla animacji opacity sekcji hero - przyciski muszą pozostać widoczne */
    .hero-content {
        padding-bottom: 20px; /* Dodatkowy padding na dole */
    }
    
    /* Karty w sekcji "Dlaczego GlobalPET" */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    /* Usługi - karty w jednej kolumnie */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .service-card img {
        height: 200px;
    }
    
    /* Kroki procesu */
    .process-steps-horizontal {
        gap: 25px;
        margin: 30px auto;
    }
    
    .step-box {
        padding: 20px 15px;
        min-height: 280px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .step-box h3 {
        font-size: 1.4rem;
        margin: 15px 0 10px;
    }
    
    .step-box p {
        font-size: 1rem;
    }
    
    .step-box .icon, .icon.process-step-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        max-width: 60px;
        max-height: 60px;
    }
    
    .step-box .icon i {
        font-size: 1.6rem;
    }
    
    /* Licznik kilometrów */
    .kilometer-counter {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .counter-container {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-number {
        font-size: 2.3rem;
        min-width: auto;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .kilometer-text {
        font-size: 1.2rem;
        text-align: center;
        white-space: normal;
        line-height: 1.4;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
    
    /* Opinie */
    .testimonial {
        padding: 20px 15px;
    }
    
    .quote {
        font-size: 1rem;
    }
    
    .author {
        font-size: 1.1rem;
    }
    
    /* Formularz kontaktowy - naprawiona sekcja dla telefonów */
    .contact-content {
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px 20px;
        width: 100%;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form .btn {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
    }
    
    /* Informacje kontaktowe */
    .contact-info {
        width: 100%;
        margin-top: 20px;
        text-align: center;
        align-items: center;
    }
    
    .info-item {
        margin-bottom: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        width: 80%;
        max-width: 280px;
    }
    
    .info-item .icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        margin-bottom: 0;
        flex-shrink: 0;
        min-width: 50px;
    }
    
    .info-item p {
        font-size: 1rem;
        word-break: break-word;
        text-align: left;
    }
    
    .social-media {
        margin-top: 30px;
        gap: 15px;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Stopka */
    footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        margin-bottom: 40px;
    }
    
    .footer-logo img {
        height: 100px;
    }
    
    .footer-logo p {
        font-size: 0.95rem;
    }
    
    .footer-links {
        padding-top: 5px;
    }
    
    .footer-links h4 {
        font-size: 1.3rem;
    }
    
    .footer-links ul li a {
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.9rem;
    }
}

/* Animacje */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 15px rgba(0, 133, 182, 0.4);
        opacity: 0.7;
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 133, 182, 0.7);
        opacity: 1;
    }
}

/* Usuwam .feature-card z listy animowanych elementów */
.service-card, .testimonial {
    animation: fadeInUp 0.8s ease forwards;
}

/* Spowolnienie animacji kart, usuwam .feature-card z tej listy */
.service-card, 
.testimonial {
    transition: all 1.2s ease;
}

/* Wyróżnienie nazwy firmy w tekście */
.brand-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Logo - usunięcie wszystkich efektów podkreślenia */
.logo a::after,
.logo a:hover::after,
.logo::after,
.logo:hover::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

/* Poziomy układ kroków procesu */
.process-steps-horizontal {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1300px;
    margin: 60px auto;
    padding: 0;
    gap: 12px;
}

.section-title {
    text-align: center;
    font-size: 2.7rem;
    margin: 60px auto 30px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 35px 10px;
    width: 252px;
    min-width: unset;
    text-align: center;
    position: relative;
    transition: all 0.3s ease, outline 0.3s ease;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 400px;
    margin-bottom: 25px;
    margin-left: 4px;
    margin-right: 4px;
    position: relative;
    outline: 0px solid transparent;
}

.step-box::after {
    display: none;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(44, 55, 72, 0.3);
    outline: 3px solid var(--primary-color);
    position: relative;
    z-index: 5;
}

.step-box .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.step-box h3 {
    margin-top: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 22px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    order: 1;
}

.step-box p {
    color: var(--text-light);
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 25px;
    order: 2;
    padding: 0 5px;
    font-weight: 400;
}

/* Style dla ikon w krokach procesu */
.step-box .icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background-color: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.6s ease-in-out; /* Dłuższa i bardziej płynna animacja */
    order: 3;
    overflow: hidden;
    min-width: 75px;
    min-height: 75px;
    max-width: 75px;
    max-height: 75px;
    perspective: 500px; /* Dodanie perspektywy */
    transform-style: preserve-3d; /* Zachowanie 3D */
}

.step-box .icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.6s ease-in-out; /* Dłuższa i bardziej płynna animacja */
}

/* Hover dla kroków procesu */
.step-box:hover .icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.step-box:hover .icon i {
    color: white;
}

@media screen and (max-width: 1280px) {
    .process-steps-horizontal {
        max-width: 1000px;
        gap: 10px;
    }
    
    .step-box {
        width: 19%;
        max-width: none;
        height: 420px;
        padding: 30px 8px;
    }
    
    .step-box h3 {
        font-size: 1.6rem;
    }
    
    .step-box p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 992px) {
    .process-steps-horizontal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .step-box {
        width: 30%;
        max-width: 280px;
        height: 380px;
    }
}

@media screen and (max-width: 768px) {
    .process-steps-horizontal {
        flex-direction: column;
        align-items: center;
    }
    
    .step-box {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 320px;
    }
}

.social-icon:hover, .social-icon.touch-active, .social-icon.hover-effect {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icon:hover:before, .social-icon.touch-active:before, .social-icon.hover-effect:before {
    transform: scale(1);
    opacity: 1;
}

.social-icon:hover i, .social-icon:hover svg,
.social-icon.hover-effect i, .social-icon.hover-effect svg,
.social-icon.touch-active i, .social-icon.touch-active svg {
    color: white;
}

/* Bezpośrednie styles dla ikon procesowych */
.process-step-icon, .step-box .icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background-color: rgba(44, 55, 72, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.6s ease-in-out; /* Dłuższa i bardziej płynna animacja */
    perspective: 500px; /* Dodanie perspektywy */
    transform-style: preserve-3d; /* Zachowanie 3D */
}

.process-step-icon i, .step-box .icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.6s ease-in-out; /* Dłuższa i bardziej płynna animacja */
}

.step-box:hover .process-step-icon, .step-box:hover .icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.step-box:hover .process-step-icon i, .step-box:hover .icon i {
    color: white;
}

/* Dodatkowy bardziej specyficzny selektor dla lepszego nadpisania */
.icon.process-step-icon {
    border-radius: 50%;
    width: 75px;
    height: 75px;
    aspect-ratio: 1/1;
}

.kilometer-counter:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.highlight-text-container {
    margin-top: 15px;
}

.highlight-text {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Klasa dla zaznaczenia aktywnego elementu przy dotknięciu */
.touch-active {
    box-shadow: 0 15px 30px rgba(0, 133, 182, 0.4) !important;
    position: relative;
    z-index: 10;
}

/* Tylko step-box ma mieć niebieską obwódkę */
.step-box.touch-active {
    outline: 3px solid var(--primary-color) !important;
    transform: translateY(-10px) !important;
}

/* Usuwamy konkretną klasę dla service-card.touch-active, 
   będziemy zarządzać tym przez JavaScript */

.step-box.touch-active .icon {
    background: var(--primary-color) !important;
    transform: rotateY(180deg) !important;
}

.step-box.touch-active .icon i {
    color: white !important;
} 

/* Dodatkowe animacje dla menu mobilnego */
@keyframes slideIn {
    from {
        right: -100%;
        opacity: 0;
    }
    to {
        right: 0;
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Dodatkowe style dla mobilnych urządzeń */
@media screen and (max-width: 480px) {
    #hero {
        min-height: 60vh;
        padding-top: 70px;
        padding-bottom: 40px;
        height: auto;
        background-position: center 25%;
        background-size: cover;
    }
    
    #hero .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 20px 15px;
        width: 95%;
        max-width: 95%;
        margin: 0 auto;
        position: relative;
        background: rgba(0, 0, 0, 0.3); /* Taki sam kolor tła jak w wersji desktopowej */
        backdrop-filter: blur(10px); /* To samo rozmycie */
    }
    
    .hero-content h1 {
        font-size: 2.0rem;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9); /* Mocniejszy cień tekstu */
        font-weight: 700;
        color: #ffffff; /* Pełna nieprzezroczystość */
        letter-spacing: 0.5px; /* Lepszy odstęp między literami */
        position: relative; /* Dodanie pozycji relatywnej dla pseudo-elementu */
        z-index: 2; /* Wyższy z-index */
        display: inline-block; /* Aby pseudo-element działał poprawnie */
        width: 100%; /* Pełna szerokość */
        text-transform: uppercase; /* Większe litery dla lepszej widoczności */
    }
    
    /* Przyciski w hero - poprawione dla telefonów */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 12px;
    }
    
    .hero-content .btn {
        margin: 0;
        width: 80%;
        max-width: 220px;
        display: block;
        text-align: center;
        padding: 12px 18px;
        font-size: 0.95rem;
        position: relative;
        z-index: 10;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .hero-content .btn-outlined {
        margin: 0;
        width: 80%;
        max-width: 220px;
        display: block;
        text-align: center;
        padding: 12px 18px;
        font-size: 0.95rem;
        position: relative;
        z-index: 10;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Dodatkowe style dla przycisku outlined */
    .hero-content .btn-outlined {
        background: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        overflow: hidden;
    }
    
    .hero-content .btn-outlined:hover, .hero-content .btn-outlined.touch-active {
        background: var(--gradient);
        border-color: transparent;
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .hero-content h1 {
        font-size: 2.0rem;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9); /* Mocniejszy cień tekstu */
        font-weight: 700;
        color: #ffffff; /* Pełna nieprzezroczystość */
        letter-spacing: 0.5px; /* Lepszy odstęp między literami */
        position: relative; /* Dodanie pozycji relatywnej dla pseudo-elementu */
        z-index: 2; /* Wyższy z-index */
        display: inline-block; /* Aby pseudo-element działał poprawnie */
        width: 100%; /* Pełna szerokość */
        text-transform: uppercase; /* Większe litery dla lepszej widoczności */
    }
    
    .hero-content p {
        font-size: 1.0rem;
        margin-bottom: 20px;
        padding: 0;
        line-height: 1.5;
        color: #ffffff; /* Pełna nieprzezroczystość */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* Mocniejszy cień tekstu */
    }
}

/* Główna definicja dla sekcji hero */
#hero {
    position: relative;
    min-height: 70vh; /* Zmniejszona wysokość */
    padding: 80px 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('pies kierujacy niebieska tesla obok kot na siedzeniu a z tylu lew i kangur siedzacy(1).jpg');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    color: white;
    z-index: 1;
    text-align: center; /* Dodane wyśrodkowanie tekstu */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
}

.hero-content {
    position: relative;
    max-width: 750px;
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background: rgba(0, 0, 0, 0.3); /* Zmniejszona przezroczystość tła (z 0.45 na 0.3) */
    backdrop-filter: blur(10px); /* Zwiększone rozmycie (z 8px na 10px) */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); /* Mocniejszy cień */
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Nieco bardziej widoczna ramka */
    margin: 0 auto; /* Automatyczne marginesy dla wyśrodkowania */
}

.hero-content h1 {
    font-size: 2.4rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7); /* Mocniejszy cień tekstu */
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700; /* Zwiększona grubość czcionki */
}

.hero-content p {
    color: rgba(255, 255, 255, 1); /* Pełna nieprzezroczystość tekstu */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* Mocniejszy cień tekstu */
    font-size: 1.15rem; /* Nieco większy tekst */
    line-height: 1.5;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 400; /* Normalna grubość czcionki */
}

/* Kontener dla przycisków */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 20px auto 0;
    width: 100%;
}

/* Style dla reCAPTCHA */
.g-recaptcha {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 320px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: left center;
    }
}
