@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@400;600;700&display=swap');
/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === TYPOGRAFIA === */
body {
    font-family: 'Albert Sans', serif;
    font-size: 17px;
    color: #0A2E36;
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 0.5em;
    font-family: 'Albert Sans', sans-serif;
}

/* === HEADER / NAV === */
header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ddd;
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    max-width: 180px;
    width: auto; /* Zachowaj proporcje obrazu */
    margin-right: 10px; /* Zachowaj odstęp od tekstu, jeśli byłby tam tekst */
    object-fit: contain;
}

.nav-links { /* To są style dla menu DESKTOPOWEGO */
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #0A2E36;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #3B7A94;
}

/* --- SEKCJA POLITYKI PRYWATNOŚCI --- */
.privacy-policy-main {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.privacy-policy-main .section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.privacy-policy-main .section-line {
    flex-grow: 1;
    height: 2px;
    background-color: #0A2E36;
    border: none;
    max-width: 500px;
}

.privacy-policy-main .section-title {
    font-size: 2.2rem;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    color: #0A2E36;
    white-space: nowrap;
    text-align: center;
}

.privacy-content {
    font-size: 1em;
    line-height: 1.6;
    color: #0A2E36;
    text-align: left;
}

.privacy-content h3 {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.4em;
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: #0A2E36;
    font-weight: 600;
}

.privacy-content h4 {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.2em;
    margin-top: 1.5em;
    margin-bottom: 0.6em;
    color: #001F4D;
    font-weight: 600;
}

.privacy-content p {
    margin-bottom: 1em;
}

.privacy-content ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1em;
}

.privacy-content ol {
    list-style-type: decimal;
    margin-left: 25px;
    margin-bottom: 1em;
}

.privacy-content li {
    margin-bottom: 0.5em;
}

.privacy-content strong {
    font-weight: 700;
}

.privacy-content a {
    color: #0A2E36 !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: #0A2E36;
}
/* --- HERO SECTION --- */
.hero {
    padding: 0;
    margin: 0;
    text-align: center;
    background-color: #fafafa;
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Usunięto style dla h1 w hero, bo h1 został usunięty z HTML */

/* --- Style dla karuzeli zdjęć (Fade-in/Fade-out) --- */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.carousel-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-slide img.active {
    opacity: 1;
}

/* Ukrycie przycisków nawigacyjnych (strzałek) */
.prev, .next {
    display: none;
}
/* --- NOWA SEKCJA: Intro Slogan --- */
.intro-slogan {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
    max-width: 100%;
    margin: 0 auto;
}

.intro-slogan .intro-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #0C7C59;
    color: #0C7C59 !important;
    margin-bottom: 18px;
    line-height: 1.1;
    font-family: 'Albert Sans', sans-serif;
}

.intro-slogan .intro-text {
    font-size: 1.4em;
    font-weight: 400;
    color: #0C7C59;
    color: #0C7C59 !important;
    line-height: 1.3;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* --- ABOUT SECTION --- */
.about {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.separator-left {
    width: 90%;
    max-width: 150px;
    height: 3px;
    background-color: #000;
    margin-bottom: 30px;
    border: none;
}

.about-content p {
    margin-bottom: 1em;
    color: #0A2E36;
}
.zielony {
    color: #0C7C59;
}


/* ===== KLUCZOWA ZMIANA TUTAJ ===== */
.about-content p a,
.about-content p a:link,
.about-content p a:visited { /* Celujemy w link, link nieodwiedzony ORAZ link odwiedzony */
    color: #0C7C59 !important; /* Twoja zieleń, z !important, aby nadpisać wszystko */
    text-decoration: underline; /* Zachowaj podkreślenie, jeśli ma być */
    transition: color 0.3s ease;
}

.about-content p a:hover,
.about-content p a:active { /* Dla stanu najechania myszą i aktywnego */
    color: #09624A !important; /* Ciemniejsza zieleń na najechanie, również z !important */
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    text-align: left;
}

.feature {
    text-align: center;
}

.icon-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    height: 50px;
}

.feature-icon {
    width: 40px;
    height: 40px;
}

.feature p {
    font-size: 1rem;
    color: #0A2E36;
    line-height: 1.6;
    text-align: left;
}

.feature-title-link {
    color: #0C7C59;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
}

.feature-title-link:hover {
    color: #09624A;
    text-decoration: underline;
}

/* --- CONTACT SECTION --- */
.contact {
    background-color: #f4f4f4;
    padding: 60px 20px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.contact-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-line-left {
    width: 90%;
    max-width: 150px;
    height: 3px;
    background-color: #000;
    margin-bottom: 30px;
    border: none;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info  a  {
    color: #0C7C59 !important;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: none;
    color: #0C7C59 !important;
}

.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #0A2E36;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

/* === SOCIAL ICONS === */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
}

.social-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover .social-icon-img {
    transform: scale(1.1);
}

/* === TEAM SECTION === */
.team {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.team-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-photo {
    width: 100%;
    max-width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain; /* Zmieniono z 'cover' na 'contain' */
    margin-bottom: 10px;
    background-color: #b0b0b0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 3px solid #0C7C59;
}

.team-member .team-role {
    font-size: 0.95rem;
    color: #0A2E36;
}

/* === CLIENTS SECTION === */
.clients {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.clients-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.clients-grid {
    display: grid;
    margin-top: 30px;
}

.logo-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.logo-group img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    transition: filter 0.3s;
}

.logo-group img:hover {
    filter: brightness(0.8);
}

/* --- UJEDNOLICONE STYLE MODALI (dla zespołu i artykułów) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease-out;
    text-align: center;
    max-height: 90vh; /* Ogranicz wysokość modala do 90% wysokości viewportu */
    overflow-y: auto; /* Włącz przewijanie pionowe, jeśli treść przekracza wysokość */
    -webkit-overflow-scrolling: touch;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-button:hover,
.close-button:focus {
    color: #333;
    text-decoration: none;
}

.modal-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain; /* Zmieniono z 'cover' na 'contain' */
    margin-bottom: 20px;
    border: 3px solid #0C7C59;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-color: #b0b0b0; /* DODANO: Szare tło */
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #001F4D;
    font-family: 'Albert Sans', sans-serif;
}

.modal-content .modal-role {
    font-size: 1.05rem;
    color: #001F4D;
    margin-bottom: 18px;
}

.modal-content .modal-text p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #0A2E36;
    text-align: left;
}

.modal-text p:last-child {
    margin-bottom: 0;
}

/* --- NOWE STYLE DLA SEKCEJI WIEDZA --- */
.knowledge {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.knowledge-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #0A2E36;
}

.knowledge .separator-left {
    margin-left: auto;
    margin-right: auto;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.knowledge-item {
    background-color: #ffffff;
    border: 1px solid #eee;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.knowledge-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.12);
}

.knowledge-item h3 {
    font-family: 'Albert Sans', serif;
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0A2E36;
}

.knowledge-item p {
    font-size: 0.95em;
    color: #0A2E36;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ZMODYFIKOWANE STYLE DLA PRZYCISKÓW */
.knowledge-item .article-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0A2E36; /* Zmieniono z czarnego na ciemny granat */
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    margin-top: 15px;
    min-width: 180px;
    box-sizing: border-box;
}

.knowledge-item .article-link:hover {
    background-color: #0056b3; /* Zmieniono na niebieski odcień na hover (np. standardowy niebieski) */
}
/* POZOSTAŁE STYLE (BEZ ZMIAN) */
.knowledge-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.knowledge-title-wrapper::before,
.knowledge-title-wrapper::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #0A2E36; /* granatowy */
    max-width: 500px;
}

.knowledge-title {
    font-size: 2.2rem;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    color: #0A2E36;
    text-align: center;
    white-space: nowrap;
}

/* Styles specific for LinkedIn article content inside the modal */
.modal-article-title {
    font-family: 'Albert Sans', serif;
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #0A2E36;
    text-align: center;
}

.modal-article-content {
    font-size: 1.05em;
    line-height: 1.8;
    color: #0A2E36;
    margin-bottom: 30px;
    text-align: left;
}

.modal-article-content ul,
.modal-article-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style-position: outside;
}

.modal-article-content li {
    margin-bottom: 8px;
    color: #0A2E36;
}

.modal-article-content strong {
    color: #001F4D;
}

.modal-linkedin-button {
    display: inline-block;
    background-color: #0077B5;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    margin-top: 20px;
}

.modal-linkedin-button:hover {
    background-color: #005582;
}
/* Responsywność dla knowledge-grid */
@media (max-width: 768px) {
    .knowledge-grid {
        grid-template-columns: 1fr; /* Jedna kolumna na małych ekranach */
    }
}
/* === JOIN US SECTION === */
.join-us {
    background-color: #fafafa;
    padding: 60px 20px;
    width: 100%;

}

.join-us-container {
    max-width: 800px; /* Dostosuj maksymalną szerokość kontenera treści, np. 900px, 700px */
    margin: 0 auto; /* KLUCZOWE: Wyśrodkowanie samego kontenera */
    padding: 0 20px; /* Odstępy wewnętrzne */
    box-sizing: border-box; /* Ważne, aby padding nie powiększał szerokości */
    text-align: center;
}

.join-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.join-us .section-line-left {
    margin-left: 0;
    margin-right: auto;
}

.send-cv-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0A2E36;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-family: 'Albert Sans', sans-serif; /* Dodano, aby upewnić się, że czcionka jest Albert Sans */
    font-size: 1em;
}

.send-cv-button:hover {
    background-color: #09624A !important;
    color: #fff !important;
}
/* Styl dla linków w sekcji "Join Us" */
.join-us-container a {
    color: #0C7C59; /* Twoja zieleń */
    text-decoration: none;
    transition: color 0.3s ease;
}

.join-us-container a:hover {
    color: #09624A; /* Ciemniejsza zieleń na najechanie, spójna z Twoimi hoverami */
}



/* === OFFER SECTION NEW STYLES === */
.offer {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.offer-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.offer-details {
    margin-top: 40px;
}

.service-detail {
    margin-bottom: 60px;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 5px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail h3 {
    color: #0A2E36;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.service-detail p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #0A2E36;
}

.service-detail ul {
    list-style-type: disc;
    margin-left: 25px;
    padding-left: 0;
}

.service-detail ul li {
    margin-bottom: 8px;
    color: #0A2E36;
}

/* Ensure the separators are aligned to the left of their parent container */
.about .separator-left,
.offer .separator-left,
.team .separator-left,
.clients .separator-left,
.knowledge .separator-left {
    margin-left: 0;
    margin-right: auto;
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row; /* Zmieniamy na row, żeby logo i hamburger były obok siebie */
        justify-content: space-between; /* Rozdzielamy je */
        align-items: center;
        padding: 0.8rem 1rem;
    }
    .logo img {
        height: 50px; /* Mniejsze logo na komórkach */
    }

    .hamburger {
        display: block; /* Pokaż hamburger na małych ekranach */
    }

    .main-nav {
        position: fixed; /* Menu będzie wysuwać się z boku */
        top: 0;
        right: -100%; /* Domyślnie ukryj poza ekranem */
        width: 80%; /* Szerokość wysuwanego menu */
        height: 100vh; /* Pełna wysokość viewportu */
        background-color: #0A2E36; /* Kolor tła wysuwanego menu (ciemny granat) */
        color: #fff; /* Biały tekst w menu */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out; /* Animacja wysuwania */
        z-index: 15; /* Nad zawartością, ale pod hamburgerem */
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .main-nav.is-open {
        right: 0; /* Wysuń menu na ekran */
    }

    .main-nav .nav-links {
        flex-direction: column; /* Linki jeden pod drugim */
        gap: 30px; /* Odstępy między linkami */
        text-align: center;
        width: 100%;
    }

    .main-nav .nav-links li a {
        color: #fff; /* Biały kolor linków */
        font-size: 1.5rem; /* Większy rozmiar czcionki */
        padding: 10px 0;
        display: block; /* Żeby cały obszar linku był klikalny */
    }

    .main-nav .nav-links li a:hover {
        color: #3B7A94; /* Zmiana koloru na hover */
    }

    /* Ukryj oryginalne nav-links na desktopie w widoku mobilnym */
    .nav-links { /* To jest oryginalna klasa dla desktopowego menu */
        display: none;
    }

    /* Ponownie pokaż dla main-nav, gdy jest otwarte */
    .main-nav.is-open .nav-links {
        display: flex; /* Pokaż linki w otwartym mobilnym menu */
    }

    /* Zabezpieczenie przed przewijaniem, gdy menu jest otwarte */
    body.no-scroll {
        overflow: hidden;
    }

    /* Style dla sekcji HERO na mniejszych ekranach */
    .hero {
        height: 60vh; /* Zmniejsz wysokość hero na tabletach */
        min-height: 300px; /* Dostosuj minimalną wysokość */
    }

    .hero h1 { /* Jeśli kiedyś przywrócisz h1 w hero */
        font-size: 2rem;
    }

    .carousel-container {
        border-radius: 0;
    }
    .carousel-slide img {
        object-fit: cover;
    }

    /* Style dla sekcji INTRO SLOGAN na mniejszych ekranach */
    .intro-slogan {
        padding: 40px 15px;
    }
    .intro-slogan .intro-title {
        font-size: 2.1em;
    }
    .intro-slogan .intro-text {
        font-size: 1.1em;
    }

    /* Style dla innych sekcji na mniejszych ekranach */
    .about, .contact, .offer, .team, .clients, .join-us-container, .knowledge {
        padding: 40px 20px;
    }

    .about-title, .contact-title, .offer-title, .team-title, .clients-title, .join-title, .knowledge-title {
        font-size: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid .logo-group {
        justify-content: space-around;
    }

    .logo-group img {
        max-height: 50px;
        max-width: 100px;
    }

    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .modal-article-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    /* Style dla sekcji HERO na bardzo małych ekranach */
    .hero {
        height: 50vh; /* Jeszcze mniejsza wysokość na smartfonach */
        min-height: 250px;
    }

    /* Style dla sekcji INTRO SLOGAN na bardzo małych ekranach */
    .intro-slogan .intro-title {
        font-size: 1.7em;
    }
    .intro-slogan .intro-text {
        font-size: 0.95em;
    }

    /* Style dla menu mobilnego na bardzo małych ekranach */
    .main-nav {
        width: 100%; /* Pełna szerokość na bardzo małych ekranach */
    }

    /* Style dla sekcji WIEDZA na bardzo małych ekranach */
    .modal-article-title {
        font-size: 1.5em;
    }
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    .knowledge-item .article-link {
        width: 100%;
        box-sizing: border-box;
    }
}

/* --- Hamburger Menu Styles --- */
/* Te style powinny być GLOBALNIE, poza media queries, aby animacja działała zawsze, a jedynie "display" będzie sterowany przez media queries. */
.hamburger {
    display: none; /* Domyślnie ukryj na dużych ekranach */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 20; /* Upewnij się, że jest nad innymi elementami */
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0A2E36; /* Kolor kresek hamburgera */
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* Animacja hamburgera do krzyżyka */
.hamburger.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* === FOOTER === */
footer {
    background-color: #0C7C59;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}
section[id] {
    scroll-margin-top: 120px;
}
.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.section-title {
    font-size: 2.2rem;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    color: #0A2E36;
    white-space: nowrap;
    text-align: center;
}

.section-line {
    flex-grow: 1;
    height: 2px;
    background-color: #0A2E36;
    border: none;
    max-width: 500px;
}
/* Styl dla linku Pixiu Financial */
#ksiegowosc a {
    color: #0C7C59; 
    text-decoration: none; 
}

#ksiegowosc a:hover {
    color: #09624A; 
    text-decoration: none; 
}