/* ==========================================================================
   1. ZMIENNE I STYLE GLOBALNE
   ========================================================================== */
:root {
    /* Paleta Kolorów */
    --color-primary: #000000;      /* Główny czerwony (mocny, ale czytelny) */
    --color-primary-dark: #ffa550; /* Ciemniejszy czerwony do hoverów */
    --color-background: #ffffff;   /* Czysta biel */
    --color-light-gray: #000000;   /* Bardzo delikatny szary dla tła sekcji */
    --color-dark-text: #212121;    /* Ciemny, prawie czarny tekst */
    --color-light-text: #ffa550;   /* Biały tekst */
    --color-border: #e0e0e0;       /* Delikatny kolor ramek */

    /* Typografia */
    --font-family: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.7;

    /* Inne */
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition-speed: 0.3s;
}

/* ==========================================================================
   2. PODSTAWOWE STYLE I RESETY
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth;  }
body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-dark-text);
    background-color: var(--color-background);
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
   
}
img, picture { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 1.2; }
main > section { overflow-x: hidden; }

/* ==========================================================================
   STYLE DLA NAGŁÓWKA I NAWIGACJI
   ========================================================================== */

.main-header { 
    background-color:#1a1a1a; 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}
.main-nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
    gap: 20px; 
    font-weight: 700; 

}
.logo { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: #FFA500; 
    text-decoration: none; 
}

/* ==========================================================================
   MENU MOBILNE (ROZWIJANE)
   ========================================================================== */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #212121;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
    z-index: 1000;
    padding-bottom: 100px; /* Miejsce na social media na dole */
}
.nav-links.is-active { 
    right: 0; 
}
.nav-links ul { 
    list-style: none; 
    padding: 0; 
    width: 100%; 
}
.nav-links li { 
    text-align: center; 
}
.nav-links a { 
    color: var(--color-light-text); 
    font-size: 1.5rem; 
    display: block; 
    padding: 15px 0; 
    text-decoration: none; 
    transition: background-color 0.3s; 

}
.nav-links a:hover { 
    background-color: var(--color-light-text); 
}

/* Numer telefonu w menu mobilnym */
.nav-phone-mobile a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-light-text);
    border: 2px solid var(--color-light-text);
    border-radius: 50px;
    padding: 10px 20px;
    margin: 20px auto 0;
    display: inline-block;
    width: auto;

}
.nav-phone-mobile a:hover {
    background-color: var(--color-primary);
    color: var(--color-light-text);
}

/* Social media w menu mobilnym */
.nav-socials-mobile {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 30px;
}
.nav-socials-mobile a {
    color: var(--color-light-text);
    opacity: 0.7;
    transition: opacity var(--transition-speed), transform var(--transition-speed);
}
.nav-socials-mobile a:hover {
    opacity: 1;
    transform: translateY(-3px);
}
.nav-socials-mobile svg {
    width: 30px;
    height: 30px;
}

.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}
.nav-cta-button { 
    display: none; /* Domyślnie ukryty, widoczny na desktopie */
}
.hamburger { 
    display: block; 
    background: none; 
    border: none; 
    cursor: pointer; 
    z-index: 1001; 
    padding: 10px; 
}
.hamburger-box { 
    width: 30px; 
    height: 24px; 
    display: inline-block; 
    position: relative; 
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { 
    width: 100%; 
    height: 3px; 
    background-color: #FFA550; 
    border-radius: 3px; 
    position: absolute; 
    left: 0; 
    transition: all 0.3s ease-in-out; 
}
.hamburger-inner { 
    top: 50%; 
    transform: translateY(-50%); 
}
.hamburger-inner::before, .hamburger-inner::after { 
    content: ''; 
}
.hamburger-inner::before { 
    top: -10px; 
}
.hamburger-inner::after { 
    top: 10px; 
}
.hamburger.is-active .hamburger-inner { 
    background-color: transparent; 
}
.hamburger.is-active .hamburger-inner::before { 
    transform: translateY(10px) rotate(45deg); 
    background-color: var(--color-light-text); 
}
.hamburger.is-active .hamburger-inner::after { 
    transform: translateY(-10px) rotate(-45deg); 
    background-color: var(--color-light-text); 
}

/* ==========================================================================
   STYLE DLA WERSJI KOMPUTEROWEJ (TABLETY I WIĘKSZE)
   ========================================================================== */
@media (min-width: 1200px) {
    .logo, .nav-actions {
        flex-shrink: 0;
    }
    .nav-links {
        position: static;
        height: auto;
        width: auto;
        background: none;
        flex-grow: 1;
        display: flex;
        justify-content: center;
        min-width: 0;
        transform: translateX(-80px);
        padding-bottom: 0;
        flex-direction: row;
    }
    .nav-links ul {
        display: flex;
        gap: 8px;
    }
    .nav-links a {
        color: var(--color-light-text);
        font-size: 1rem;
        font-weight: 700; /* Pogrubienie czcionki */
        padding: 10px 8px;
        white-space: nowrap;
    }
    .nav-links a:hover {
        background-color: transparent;
        color: var(--color-light-text);
    }
    .nav-phone-mobile, .nav-socials-mobile {
        display: none; /* Ukrywamy elementy mobilne */
    }
    .nav-cta-button {
        display: inline-block;
        background-color: var(--color-primary-dark);
        color: var(--color-primary-dark);
        padding: 8px 20px;
        border-radius: var(--border-radius);
        text-decoration: none;
        font-weight: 700;
        transition: background-color var(--transition-speed);
        white-space: nowrap;
    }
    .nav-cta-button:hover {
        background-color: var(--color-light-text);
    }
    .hamburger { display: none; }
}
/* ==========================================================================
   4. SEKCJE STRONY GŁÓWNEJ I WSPÓLNE ELEMENTY
   ========================================================================== */
/* Domyślny styl dla większych ekranów */
.hero-section {
    padding: 80px 20px; /* Poprawiona właściwość */
    text-align: center;
    background-color: var(--color-background);
}

/* Styl tylko dla ekranów o szerokości do 768px (typowy telefon) */
@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 0; /* Usuwamy dolny padding */
    }
}
.hero-content { max-width: 700px; margin: 0 auto; }
.hero-section h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; color: var(--color-dark-text); }
.hero-cta-button { display: inline-block; background-color: var(--color-light-text); color: var(--color-dark-text); padding: 15px 35px; border-radius: 50px; text-decoration: none; font-size: 1.1rem; font-weight: 700; transition: all var(--transition-speed); box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3); }
.hero-cta-button:hover { background-color: var(--color-primary-dark); transform: translateY(-3px); }

.offer-section { padding: 80px 20px; }
.section-title { font-size: 2.2rem; text-align: center; margin-bottom: 40px; }
.section-lead {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center; /* POPRAWKA: Wyśrodkowuje tekst */
    color: var(--color-dark-text);
}
.offer-container { display: grid; grid-template-columns: 1fr; gap: 30px; max-width: 1200px; margin: 0 auto; }
.offer-card { background-color: var(--color-light-text); border-radius: var(--border-radius); padding: 30px; text-align: center; box-shadow: var(--box-shadow); transition: all var(--transition-speed); }
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
.offer-card h3 {
    font-size: 1.5rem;
    color: var(--color-dark-text); /* ZMIANA: Kolor zmieniony na czarny */
    margin-bottom: 15px;
}

/* ZAKTUALIZOWANE STYLE PRZYCISKÓW W OFERCIE */
.offer-button { 
    display: inline-block; 
    margin-top: 20px; 
    background-color: var(--color-primary-dark); 
    color: var(--color-dark-text); 
    padding: 10px 25px; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 600; 
    transition: all var(--transition-speed); 
    border: 2px solid #000000; /* Dodana linijka */
   
}

.why-us-section { padding: 80px 20px; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; max-width: 1200px; margin: 0 auto; }
.why-us-image img { border-radius: var(--border-radius); }
.section-title-left { font-size: 2.2rem; margin-bottom: 20px; text-align: left; }
.why-us-content { order: -1; } /* POPRAWKA: Przenosi treść nad obrazek na mobile */
.why-us-content ul { list-style: none; padding-left: 0; }
.why-us-content li { padding-left: 0px; position: relative; margin-bottom: 15px; }
.why-us-content li::before { content: '✔'; color: var(--color-primary); position: absolute; left: 0; font-weight: bold; }

/* ==========================================================================
   5. NOWE SEKCJE (FORMULARZ, FAQ, CTA)
   ========================================================================== */
.text-primary { color: var(--color-light-text); }

/* SEKCJA FORMULARZA KONTAKTOWEGO NA STRONIE GŁÓWNEJ */
.contact-form-section {
    padding: 80px 20px;
}
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.home-contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.home-contact-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.home-contact-form input,
.home-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}
.home-contact-form input:focus,
.home-contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
}
.home-contact-form button {
    border: none;
    cursor: pointer;
    width: fit-content;
    margin: 0 auto;
}

.faq-section { padding: 80px 20px; background-color: var(--color-border); } /* Dodano tło dla lepszego oddzielenia */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1.1rem; }
.faq-question::after { content: '+'; font-size: 2rem; font-weight: 300; color: var( --color-light-text); transition: transform var(--transition-speed); }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer p { padding-bottom: 20px; color: var(--color-dark-text); }
.faq-item.active .faq-answer { max-height: 300px; }

.cta-section { padding: 80px 20px; background-color: var(--color-dark-text); color: var(--color-light-text); text-align: center; }
.cta-content { max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--color-light-text); }
.cta-content p { font-size: 1.1rem; margin-bottom: 2rem; color: #a9a9a9; }

/* Poprawka skalowania przycisku w ostatniej sekcji CTA na mobile */
.cta-section .hero-cta-button {
    white-space: normal; /* KLUCZOWA POPRAWKA: Pozwala tekstowi zawinąć się do nowej linii */
    height: auto; /* Pozwala przyciskowi na zmianę wysokości */
    line-height: 1.4; /* Poprawia czytelność, gdy tekst jest w dwóch liniach */
    padding: 15px 25px; 
    font-size: 1rem; 
    max-width: 100%; /* Dodatkowe zabezpieczenie */
}

/* ==========================================================================
   6. STYLE DLA PODSTRONY KOREPETYCJE INDYWIDUALNE
   ========================================================================== */
.page-section {
    padding: 40px 20px; /* POPRAWKA: Dodano padding boczny */
}
.subpage-hero-section {
    background-color: var(--color-primary-dark);
    color: var(--color-light-text);
    padding: 80px 20px;
    text-align: center;
}
/* Style dla siatki z kartami */
.benefits-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
    /* Domyślnie jedna kolumna na mobilnych */
    grid-template-columns: 1fr;
}

/* Style dla pojedynczej karty */
.benefit-card {
    background-color: white; /* lub var(--color-background) */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

/* KLUCZOWE STYLE DLA IKONY */
.benefit-icon {
    /* Ustawiamy pomarańczowy kolor, który odziedziczy ikona SVG */
    color: #FFA550;
    margin-bottom: 20px;
}

/* Dodatkowo możemy kontrolować wielkość SVG */
.benefit-icon svg {
    width: 44px;
    height: 44px;
}

/* Style dla nagłówka w karcie */
.benefit-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Układ na większych ekranach (opcjonalnie, ale zalecane) */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* === STYLOWANIE PLANU CENOWEGO (W STYLU STRONY) === */

/* ZASTĄP SWOJĄ OBECNĄ KLASĘ .pricing-plan__price TĄ PONIŻEJ */
.pricing-plan__price {
    /* Używamy Flexboxa do ładnego ułożenia cen */
    display: flex;
    justify-content: center;
    align-items: baseline; /* Wyrównuje tekst do dolnej linii */
    gap: 15px; /* Odstęp między cenami */
    margin-bottom: 5px; /* Tak jak miałeś wcześniej */
}

/* NOWY STYL DLA PRZEKREŚLONEJ, STAREJ CENY */
.pricing-plan__price--old {
    font-size: 2rem; /* Mniejsza czcionka dla starej ceny */
    color: #b0b0b0; /* Szary kolor */
    font-weight: 400;
}

/* NOWY STYL DLA AKTUALNEJ, DUŻEJ CENY */
.pricing-plan__price--current {
    font-size: 3.5rem; /* Twój rozmiar z obecnych stylów */
    font-weight: 700;  /* Twój font-weight z obecnych stylów */
    color: #FFA550;   /* Pomarańczowy kolor dla wyróżnienia */
}

/* --- RESPONSIVE FIX: DODAJ TEN BLOK NA KOŃCU PLIKU CSS --- */
/* Style dla ekranów o szerokości do 480px (telefony) */
@media (max-width: 480px) {
    .pricing-plan__price--current {
        /* 1. Zmniejszamy czcionkę na mniejszych ekranach */
        font-size: 2.8rem; 
        
        /* 2. Zakazujemy łamania linii wewnątrz ceny */
        white-space: nowrap; 
    }

    .pricing-plan__price--old {
        /* Zmniejszamy też starą cenę dla zachowania proporcji */
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .pricing-plan {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.pricing-plan__wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.pricing-plan__card {
    background-color: #ffffff;
    /* ZMIANA: Użycie zmiennej dla koloru ramki */
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-plan__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-plan__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    /* ZMIANA: Użycie zmiennej dla koloru tekstu */
    color: var(--color-dark-text);
}



.pricing-plan__price--old {
    font-size: 1.5rem;
    color: #adb5bd;
    margin-right: 10px;
}

.pricing-plan__description {
    color: var(--color-dark-text); /* Dopasowano do .section-lead */
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.pricing-plan__details {
    color: var(--color-dark-text);
    line-height: 1.6;
    min-height: 80px;
}

/* Przycisk CTA (Call to Action) */
.pricing-plan__cta {
    display: inline-block;
    /* ZMIANA: Styl przycisku dopasowany do .offer-button */
    background-color: var(--color-primary); 
    color: var(--color-light-text);
    padding: 12px 30px;
    /* ZMIANA: Kształt przycisku dopasowany do .hero-cta-button */
    border-radius: 50px; 
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-plan__cta:hover {
    background-color: #333; /* Ciemniejszy od czarnego */
    transform: translateY(-2px);
}

/* --- Style dla karty wyróżnionej --- */

.pricing-plan__card--featured {
    /* ZMIANA: Ramka w kolorze pomarańczowym */
    border: 2px solid var(--color-light-text);
}

/* Plakietka "Najlepszy wybór" */
.pricing-plan__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    /* ZMIANA: Tło pomarańczowe, tekst czarny dla kontrastu */
    background-color: var(--color-light-text);
    color: var(--color-dark-text);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Wyróżniony przycisk CTA */
.pricing-plan__cta--featured {
    /* ZMIANA: Przycisk w głównym kolorze strony */
    background-color: var(--color-light-text);
    color: var(--color-dark-text);
}

.pricing-plan__cta--featured:hover {
    /* ZMIANA: Użycie drugiego odcienia pomarańczowego z Twoich zmiennych */
    background-color: var(--color-primary-dark);
}

/* --- Ustawienia dla większych ekranów (Desktop) --- */
@media (min-width: 768px) {
    .pricing-plan__wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: 30px;
    }

    .pricing-plan__card {
        margin-bottom: 0;
        max-width: 420px;
        justify-self: center;
    }

    .pricing-plan__card--featured {
       transform: scale(1.02);
    }
    
    .pricing-plan__card--featured:hover {
       transform: scale(1.02) translateY(-5px);
    }
}

/* ==========================================================================
   7. STOPKA
   ========================================================================== */
.main-footer { background-color: #1a1a1a; color: #a9a9a9; padding: 60px 20px 0; }
.footer-container { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-column h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--color-light-text); }
.footer-column p, .footer-column ul, .footer-column a { color: #a9a9a9; text-decoration: none; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 10px; }
.footer-column a:hover { color: var(--color-light-text); }
.footer-bottom { margin-top: 40px; padding: 20px 0; text-align: center; border-top: 1px solid #333; font-size: 0.9rem; }

/* ==========================================================================
   8. MEDIA QUERIES
   ========================================================================== */
@media (min-width: 1200px) {
    /* Style dla desktopu */
    .logo, .nav-actions {
        flex-shrink: 0; /* Zapobiega kurczeniu się logo i przycisków */
    }
    .nav-links {
        position: static;
        height: auto;
        width: auto;
        background: none;
        flex-grow: 1; /* Pozwala linkom zająć całą wolną przestrzeń */
        display: flex;
        justify-content: center; /* Wyśrodkowuje listę w dostępnym miejscu */
        min-width: 0; /* Pozwala na elastyczne kurczenie się */
        transform: translateX(-80px); /* Przesuwa linki w lewo o 80px */
    }
    .nav-links ul {
        display: flex;
        gap: 8px; /* Zmniejszony odstęp */
    }
    .nav-links a {
        color: var(--color-light-text);
        font-size: 0.9rem; /* Zmniejszona czcionka */
        padding: 10px 8px; /* Zmniejszony padding boczny */
        white-space: nowrap; /* Zapobiega łamaniu tekstu */
    }
    .nav-links a:hover {
        background-color: transparent;
        color: var(--color-background);
    }
    .nav-cta-button {
        display: inline-block;
        background-color: var(--color-light-text);
        color: var(--color-primary);
        padding: 8px 20px;
        border-radius: var(--border-radius);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--transition-speed);
        white-space: nowrap;
    }
    .nav-cta-button:hover {
        background-color: var(--color-primary-dark);
    }
    .hamburger { display: none; }

    /* Pozostałe style desktopowe */
    .hero-section h1 { font-size: 3.5rem; }
    .offer-container { grid-template-columns: repeat(2, 1fr); }
    .why-us-section { grid-template-columns: 1fr 1fr; }
    .why-us-content { order: initial; } /* POPRAWKA: Resetuje kolejność na desktopie */
    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .cta-content h2 { font-size: 3rem; }
    .home-contact-form .form-row {
        flex-direction: row;
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .offer-container { grid-template-columns: repeat(3, 1fr); }
    .footer-container { grid-template-columns: repeat(4, 1fr); }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* POPRAWKA: Zapewnia siatkę 2x2 na dużych ekranach */
        max-width: 900px; /* POPRAWKA: Ogranicza szerokość siatki */
        margin-left: auto; /* POPRAWKA: Centruje siatkę */
        margin-right: auto; /* POPRAWKA: Centruje siatkę */
    }
}

/* ==========================================================================
   SEKCJA WIDEO SHOWCASE
   ========================================================================== */
.showcase-section {
    position: relative;
    background-color: var(--color-background);
    padding: 100px 20px;
    overflow: hidden;
}
.showcase-content {
    position: relative;
    z-index: 2;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}
.showcase-title {
    color: var(--color-dark-text);
    font-size: 2.25rem;
    font-weight: 700;
}
.showcase-text {
    margin-top: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-dark-text);
    font-size: 1.125rem;
    line-height: 1.75;
}
.showcase-video-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}
/* === TUTAJ ZASZŁA ZMIANA === */
.video-container-responsive {
    width: 100%; /* Kontener zajmie 100% dostępnej szerokości */
    max-width: 889px; /* Maksymalna szerokość jak dla desktopu */
    aspect-ratio: 16 / 9; /* Wymusza proporcje 16:9 */
    margin: 0 auto; /* Centruje kontener */
}




.video-player-box {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #000;
  border: 4px solid #FFA500;
}
.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Style responsywne dla nowej sekcji */
@media (min-width: 768px) {
    .showcase-title {
        font-size: 3rem;
    }
    /* === Usunęliśmy stąd starą definicję .video-container-responsive === */
}
@media (min-width: 1024px) {
    /* === Usunęliśmy stąd starą definicję .video-container-responsive === */
}
/* ==========================================================================
   STYLE DLA PODSTRONY KURS ÓSMOKLASISTY
   ========================================================================== */

/* Siatka z zagadnieniami */
.topics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 40px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.topics-list {
    list-style: none;
    padding-left: 25px;
}
.topics-list li {
    position: relative;
    margin-bottom: 12px;
}
.topics-list li::before {
    content: '✓';
    color: var(--color-primary);
    position: absolute;
    left: -25px;
    font-weight: bold;
}

/* Sekcja z terminami i cennikiem */
.course-details-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.course-schedule h3,
.course-pricing h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}
.schedule-option,
.payment-option {
    background-color: var(--color-background);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin-bottom: 20px;
}
.schedule-option h4,
.payment-option h4 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.schedule-option p,
.payment-option p {
    margin-bottom: 10px;
}
.schedule-option span {
    display: block;
    font-weight: 600;
}
.payment-option {
    position: relative;
}
.payment-option.recommended {
    border: 2px solid var(--color-primary);
}
.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-light-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}
.price-total {
    font-weight: 600;
}
.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}
.payment-option span {
    font-size: 0.9rem;
    color: #777;
}
.course-duration {
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
    padding: 15px;
    background-color: var(--color-light-gray);
    border-radius: var(--border-radius);
}

/* Poprawki RWD dla nowych sekcji */
@media (min-width: 768px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .course-details-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .topics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ==========================================================================
   STYLE DLA PODSTRONY KURS MATURALNY
   ========================================================================== */

/* Siatka wyboru poziomu */
.level-selection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}
.level-card {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    text-align: center;
}
.level-card h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}
.level-card p {
    flex-grow: 1; /* Wyrównuje przyciski na dole */
    margin-bottom: 20px;
}

/* Poprawki RWD dla nowych sekcji */
@media (min-width: 768px) {
    .level-selection-grid {
        grid-template-columns: 1fr 1fr;
    }
}



/* ==========================================================================
   STYLE DLA PODSTRONY "O NAS"
   ========================================================================== */

/* Sekcja z misją w kafelkach dziedziczy style z .benefits-grid,
   więc nie potrzebuje wielu dodatkowych reguł.
   Poniższe style zapewniają, że siatka będzie się dobrze układać. */

/* Dodatkowe RWD dla siatki na tej podstronie */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
    }
}


/* ==========================================================================
   STYLE DLA PODSTRONY KONTAKT
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 40px auto 0;
}
.contact-info .section-title-left,
.contact-form-wrapper .section-title-left {
    margin-bottom: 30px;
}
.contact-item {
    margin-bottom: 30px;
}
.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.contact-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark-text);
    text-decoration: none;
    word-break: break-all;
}
.contact-link:hover {
    color: var(--color-primary);
}
.company-data {
    font-size: 1rem;
    line-height: 1.6;
    color: #616161;
}
.contact-form-wrapper {
    background-color: var(--color-border);
    padding: 30px;
    border-radius: var(--border-radius);
}
.home-contact-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--color-background);
    color: #616161;
}
.home-contact-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
}
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}
.form-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}
.form-consent label {
    font-size: 0.85rem;
    color: #777;
}
.form-consent a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Poprawki RWD dla nowych sekcji */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* --- ZMIANA KOLEJNOŚCI SEKCJI KONTAKTOWEJ NA MOBILE --- */

/* Na urządzeniach mobilnych (domyślnie) */
/* Ustawiamy formularz jako pierwszy (order: 1) a dane kontaktowe jako drugie (order: 2) */
.contact-info {
    order: 2;
}

.contact-form-wrapper {
    order: 1;
}


/* Na urządzeniach desktopowych (od 768px wzwyż) */
/* Resetujemy kolejność, aby wróciła do tej z kodu HTML */
@media (min-width: 768px) {
    .contact-info,
    .contact-form-wrapper {
        order: unset; /* 'unset' przywraca domyślną wartość */
    }
}


/* ==========================================================================
   STYLE DLA STRON PRAWNYCH (Polityka Prywatności, itp.)
   ========================================================================== */
.legal-text-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}
.legal-text-container h1, 
.legal-text-container h2 {
    color: var(--color-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}
.legal-text-container p, 
.legal-text-container li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}
.legal-text-container ul,
.legal-text-container ol {
    padding-left: 25px;
}
.legal-text-container a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}
.legal-text-container strong {
    color: var(--color-dark-text);
}

/* ==========================================================================
   STYLE DLA IKON SOCIAL MEDIA W STOPCE
   ========================================================================== */

.footer-socials {
    display: flex;
    gap: 15px; /* Odstęp między ikonami */
    margin-top: 15px; /* Odstęp od tekstu powyżej */
}

.footer-socials a {
    color: #a9a9a9; /* Taki sam kolor jak inne linki w stopce */
    transition: color var(--transition-speed), transform var(--transition-speed);
}

.footer-socials a:hover {
    color: var(--color-light-text); /* Jaśniejszy kolor po najechaniu */
    transform: translateY(-2px); /* Efekt lekkiego uniesienia */
}

.footer-socials svg {
    width: 24px;
    height: 24px;
}



.dynamic-text::after {
  content: '|'; /* To jest nasz kursor */
  animation: blink 1s infinite;
  font-weight: 300; /* Cieńszy kursor */
}

/* Animacja migania kursora */
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Styl dla ikon w liście "Dlaczego my?" */
.why-us-content li::before {
    content: ''; /* Wypełnimy poniżej dla każdego elementu */
    margin-right: 20px; /* Odstęp między ikoną a tekstem */
    margin-left: -35px; /* UJEMNY MARGINES: Wypycha ikonę w lewo */
    color: #ffa550;
    font-size: 2.5em; /* Rozmiar ikony */  
    top: -3px;          /* Przesuwamy 3px w górę */
}



/* Usunięcie domyślnych kropek i zarządzanie wcięciem */
.why-us-content ul {
    list-style-type: none;
    padding-left: 30px; 
    margin-top: 10px; /* DODANE: Margines od góry */
}

/* --- AKTUALIZACJA STYLI BANERA COOKIES --- */

#cookie-consent-banner .cookie-buttons {
    display: flex;
    gap: 10px; /* Odstęp między przyciskami */
    flex-shrink: 0;
}

/* Styl dla drugorzędnego przycisku "Ustawienia" */
.offer-button.secondary {
    background-color: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-border);
}

.offer-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


/* --- STYL BANERA COOKIES --- */

#cookie-consent-banner {
    position: fixed; /* KLUCZOWA WŁAŚCIWOŚĆ: Przykleja baner do ekranu */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary-dark);
    color: var(--color-border);
    padding: 20px 30px;
    z-index: 1000; /* Baner zawsze na wierzchu */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    display: none; /* Domyślnie ukryty, JS go pokaże */
    align-items: center;
    justify-content: center;
}

#cookie-consent-banner .cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
}

#cookie-consent-banner p {
    margin: 0;
    font-size: 14px;
    flex-grow: 1;
}

#cookie-consent-banner a {
    color: #ffa550;
    text-decoration: underline;
    font-weight: 600;
}

#cookie-consent-banner .cookie-buttons {
    display: flex;
    gap: 10px; /* Odstęp między przyciskami */
    flex-shrink: 0;
}

/* Styl dla drugorzędnego przycisku "Ustawienia" */
.offer-button.secondary {
    background-color: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-border);
}

.offer-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dostosowanie banera dla urządzeń mobilnych */
@media (max-width: 768px) {
    #cookie-consent-banner .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    #cookie-consent-banner p {
        margin-bottom: 15px;
    }
}


/* --- MODAL USTAWIEŃ COOKIES --- */

#cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Półprzezroczyste tło */
    z-index: 1001; /* Wyżej niż baner */
    display: none; /* Domyślnie ukryty */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#cookie-settings-modal .modal-content {
    background-color: var(--color-primary-dark);
    color: var(--color-border);
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

#cookie-settings-modal h3 {
    margin-top: 0;
    color: #ffa550;
    font-size: 22px;
}

#cookie-settings-modal p {
    font-size: 14px;
    margin-bottom: 25px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

/* Niestandardowy wygląd checkboxów */
.cookie-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--color-background);
    border: 2px solid var(--color-border);
    border-radius: 5px;
    cursor: pointer;
    margin-right: 15px;
    position: relative;
    top: 2px;
    flex-shrink: 0;
    transition: background-color 0.2s, border-color 0.2s;
}

.cookie-option input[type="checkbox"]:checked {
    background-color: #ffa550;
    border-color: #ffa550;
}

.cookie-option input[type="checkbox"]:checked::before {
    content: '✔';
    font-size: 14px;
    color: var(--color-primary-dark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-option label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.cookie-option label strong {
    font-size: 16px;
    margin-bottom: 4px;
}

.cookie-option label small {
    font-size: 12px;
    color: #ccc;
    line-height: 1.4;
}

#cookie-settings-modal #save-cookies-btn {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================================
   NOWA, SKALOWALNA SEKCJA "PROCES NAUCZANIA" - TIMELINE
   ========================================================================== */

.process-timeline-section {
    padding: 80px 20px;
    background-color: #f9f9f9; /* Delikatne tło dla wyróżnienia sekcji */
}

.process-timeline-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.process-timeline {
    margin-top: 60px;
    position: relative;
    display: grid;
    gap: 40px;
}

/* Linia osi czasu */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 44px; /* Centruje linię względem ikony */
    top: 20px;
    bottom: 20px;
    width: 4px;
    background-color: #ffeeda;
    border-radius: 2px;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    padding-left: 80px; /* Zapewnia miejsce na ikonę i linię */
}

/* ZAKTUALIZOWANY STYL IKON W OSI CZASU */
.timeline-icon {
    /* Ustawienia pozycji i rozmiaru (pozostają bez zmian) */
    position: absolute;
    left: 44px;
    transform: translateX(-50%);
    z-index: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    /* NOWE style wizualne */
    background-color: var(--color-light-text); /* Pomarańczowe tło */
    color: var(--color-background);           /* Biała liczba */
    font-size: 1.5rem;                        /* Odpowiedni rozmiar liczby */
    font-weight: 700;                         /* Pogrubienie dla czytelności */
    border: none;                             /* Usunięcie poprzedniej ramki */
    
    /* Dodatkowa biała obwódka dla lepszego odcięcia od tła i linii */
    box-shadow: 0 0 0 4px #f9f9f9; 
}

/* Dostosowanie do urządzeń mobilnych */
@media (max-width: 768px) {
    .timeline-icon {
        left: 30px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

.timeline-content {
    background-color: var(--color-background);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: left;
    flex-grow: 1;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--color-dark-text);
}

.timeline-content p {
    margin-bottom: 0;
    line-height: 1.7;
    color: #555;
}

/* Poprawki dla urządzeń mobilnych - skalowanie */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px; /* Przesuwa linię w lewo na mniejszych ekranach */
    }
    .timeline-item {
        padding-left: 60px; /* Zmniejsza wcięcie */
    }
    .timeline-icon {
        left: 30px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    .timeline-content h3 {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   SEKCJA "JAK UCZYMY?"
   ========================================================================== */

.how-we-teach-section {
    padding: 80px 20px;
}

.how-we-teach-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.how-we-teach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.how-we-teach-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: left;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-we-teach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.how-we-teach-icon {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.how-we-teach-icon svg {
    width: 48px;
    height: 48px;
}

.how-we-teach-card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--color-dark-text);
}

.how-we-teach-card p {
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Dostosowanie do urządzeń mobilnych */
@media (max-width: 768px) {
    .how-we-teach-grid {
        grid-template-columns: 1fr;
    }
    .how-we-teach-card {
        text-align: center;
    }
}

/* ==========================================================================
   SEKCJA DLA RODZICÓW - STYL AKORDEONU
   ========================================================================== */

.parent-accordion-section {
    padding: 80px 20px;
    background-color: var(--color-background);
}

.parent-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.parent-accordion {
    margin-top: 50px;
    text-align: left;
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.accordion-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 5px;
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark-text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-question:hover {
    color: var(--color-primary);
}

/* Styl ikony +/- */
.accordion-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease-out;
    margin-left: 15px;
}

.accordion-item.active .accordion-question::after {
    transform: rotate(45deg);
}

.accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-answer p {
    padding: 0 5px 20px 5px;
    margin: 0;
    line-height: 1.7;
    color: #555;
}



/* ==========================================================================
           SEKCJA HERO Z TŁEM (ZINTEGROWANA)
           ========================================================================== */
        .hero-section {
            padding: 80px 20px;
            text-align: center;
            background-color: var(--color-background);
        }

        .hero-section.with-background {
            position: relative;
            padding: 120px 20px;
            color: #ffffff;
            /* Zastąp URL poniżej ścieżką do swojego obrazu, np. 'img/hero-background.jpg' */
            background-image: linear-gradient(rgba(26, 26, 26, 0.65), rgba(26, 26, 26, 0.65)), url('https://images.unsplash.com/photo-1509228468518-180dd4864904?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center center;
        }
        
        .hero-content { 
            max-width: 800px; 
            margin: 0 auto; 
        }
        
        .hero-section h1 { 
            font-size: 2.5rem; 
            margin-bottom: 1rem; 
        }
        
        
        
        .hero-subtitle { 
            font-size: 1.1rem; 
            margin-bottom: 2rem; 
            color: var(--color-dark-text); 
        }

        .hero-section.with-background .hero-subtitle {
             color: #f0f0f0; /* Jaśniejszy kolor na tle obrazka */
        }
        
        .hero-cta-button { 
            display: inline-block; 
            background-color: var(--color-light-text); 
            color: var(--color-dark-text); 
            padding: 15px 35px; 
            border-radius: 50px; 
            text-decoration: none; 
            font-size: 1.1rem; 
            font-weight: 700; 
            transition: all var(--transition-speed); 
            box-shadow: 0 4px 15px rgba(255, 165, 80, 0.3);
        }

        .hero-cta-button:hover { 
            background-color: var(--color-primary-dark); 
            transform: translateY(-3px); 
        }
        
        /* Animacja migania kursora */
        .dynamic-text::after {
            content: '|';
            animation: blink 1s infinite;
            font-weight: 300;
        }

        @keyframes blink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
        }

        /* ==========================================================================
           RESPONSYWNOŚĆ DLA SEKCJI HERO
           ========================================================================== */
        @media (max-width: 768px) {
            .hero-section {
                /* Na Twojej stronie był tu padding-bottom: 0, 
                   ale dla samodzielnej sekcji może to wyglądać gorzej. 
                   Możesz go odkomentować w razie potrzeby. */
                /* padding-bottom: 0; */
            }
        }
       
        @media (min-width: 768px) {
            /* Opcjonalna poprawka dla większych ekranów, aby nagłówek był bardziej wyrazisty */
            .hero-section.with-background h1 {
                font-size: 3.2rem;
            }
        }

        @media (min-width: 1200px) {
             /* Styl dla desktopu z oryginalnego pliku */
            .hero-section h1 { 
                font-size: 3.5rem; 
            }
        }
   



/* ==========================================================================
           STYLE DLA SEKCJI "DLACZEGO MY?"
           ========================================================================== */
        .why-us-section {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-us-image img {
            border-radius: var(--border-radius);
        }

        .section-title-left {
            font-size: 2.2rem;
            margin-bottom: 20px;
            text-align: left;
        }

        .why-us-content ul {
            list-style: none;
            padding-left: 0;
            margin-top: 30px; /* Zwiększony odstęp od paragrafu */
            display: flex;
            flex-direction: column;
            gap: 25px; /* Odstęp między elementami listy */
        }

        /* NOWE STYLE DLA ELEMENTÓW LISTY Z IKONAMI SVG */
        .why-us-content li {
            display: flex;
            align-items: flex-start; /* Wyrównuje ikonę z górną krawędzią tekstu */
            gap: 20px; /* Odstęp między ikoną a tekstem */
        }
        
        .why-us-icon {
            flex-shrink: 0; /* Zapobiega kurczeniu się ikony */
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff5e6; /* Delikatne tło pod ikoną */
            border-radius: 50%; /* Okrągłe tło */
            color: var(--color-light-text); /* Kolor ikony SVG */
        }

        .why-us-icon svg {
            width: 20px;
            height: 20px;
        }

        /* Poprawki responsywne */
        @media (min-width: 768px) {
            .why-us-section {
                grid-template-columns: 1fr 1fr;
            }
        }