/* Dodano import czcionki Sora */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

/* Competencies Section - Style były już obecne, bez zmian */
.competencies {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f0f2ff 100%);
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.competency-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.competency-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.competency-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.competency-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain; /* Lepsze dopasowanie ikon */
}

.competency-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    text-align: center;
}

.competency-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: center; /* Opcjonalnie wyśrodkowanie */
}

.competency-skills {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.competency-skills li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    font-size: 0.95rem; /* Lekko zmniejszona czcionka */
}

.competency-skills li:before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}
/* Koniec stylów Competencies */

:root {
    --primary-color: #6C63FF; /* Fiolet */
    --primary-dark: #4A45B2;  /* Ciemny fiolet */
    --primary-light: #9D97FF; /* Jasny fiolet */
    --secondary-color: #FF6584; /* Różowy */
    --blue-color: #4361EE;    /* Dodano niebieski dla gradientu */
    --light-bg: #F8F9FE;
    --white: #FFFFFF;
    --gray: #F4F4F4;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Zastosowano czcionkę Sora globalnie */
    font-family: 'Sora', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    /* Zmieniono gradient przycisków */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--blue-color) 50%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    /* Zmieniono zaokrąglenie na mniej zaokrąglone */
    border-radius: 8px; /* Można zmniejszyć np. do 5px */
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(108, 99, 255, 0.3);
    background-size: 200% auto;
    text-align: center; /* Dodano dla pewności */
}

.btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(108, 99, 255, 0.4);
}

.btn-secondary {
    /* Zmieniono gradient dla hover drugorzędnego przycisku */
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover {
     /* Użyto tego samego gradientu co główny przycisk dla spójności */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--blue-color) 50%, var(--secondary-color) 100%);
    background-position: right center; /* Dodano dla animacji */
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 12px rgba(108, 99, 255, 0.4); /* Dodano cień */
    transform: translateY(-2px); /* Dodano transformację */
}


/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 25px;
    position: relative;
}

.menu li a {
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 20px;
    transition: all 0.3s;
}

.menu li a:hover {
    color: var(--primary-color);
    background-color: var(--light-bg);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    /* Zmieniono gradient tła */
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L60,144C120,160,240,192,360,176C480,160,600,96,720,96C840,96,960,160,1080,170.7C1200,181,1320,139,1380,117.3L1440,96L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>');
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    position: relative;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
}

/* Featured Courses */
.featured-courses {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-gray);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex; /* Dodane dla poprawnego filtrowania */
    flex-direction: column; /* Dodane dla poprawnego filtrowania */
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.course-img {
    height: 200px;
    /* Zmieniono tło baneru na gradient fioletu */
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, opacity 0.5s; /* Dodano opacity do transition */
    opacity: 0.2; /* Zmniejszono domyślną przeźroczystość obrazka */
}

.course-card:hover .course-img img {
    transform: scale(1.05);
    opacity: 0.4; /* Lekko zwiększona przeźroczystość przy najechaniu */
}

.course-content {
    padding: 25px;
    display: flex; /* Dodano dla elastyczności */
    flex-direction: column; /* Dodano dla elastyczności */
    flex-grow: 1; /* Pozwala contentowi wypełnić kartę */
}

.course-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark-gray);
    line-height: 1.3;
}

.course-desc {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
    flex-grow: 1; /* Opis rozciąga się, wypychając przyciski na dół */
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #777;
}

.course-buttons {
    display: flex;
    gap: 12px;
    margin-top: auto; /* Przyciski na dole karty */
}


/* Catalog */
.catalog {
    padding: 100px 0;
    background-color: var(--white);
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 10px 20px;
    background-color: var(--gray);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.category-btn:hover, .category-btn.active {
    /* Użyto gradientu głównego przycisku dla aktywnej/hover kategorii */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--blue-color) 50%, var(--secondary-color) 100%);
    background-size: 200% auto;
    background-position: left center;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(108, 99, 255, 0.3);
}
.category-btn.active:hover {
     background-position: right center; /* Animacja dla aktywnego przycisku */
}


/* Add Course Section */
.add-course {
    padding: 100px 0;
    /* Zmieniono gradient tła */
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.add-course::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L60,229.3C120,235,240,245,360,218.7C480,192,600,128,720,122.7C840,117,960,171,1080,181.3C1200,192,1320,160,1380,144L1440,128L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z"></path></svg>');
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.add-course .section-title h2 {
    -webkit-text-fill-color: var(--white); /* Zapewnia biały tekst */
     color: var(--white); /* Standardowy biały tekst */
     background: none; /* Usuwa gradient z tytułu w tej sekcji */
    -webkit-background-clip: unset;
    background-clip: unset;

}

.add-course .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

.add-course .btn {
    /* Styl przycisku w sekcji "Dodaj szkolenie" */
    background: var(--white); /* Białe tło */
    color: var(--primary-color); /* Fioletowy tekst */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.add-course .btn:hover {
    background: var(--gray); /* Jasnoszare tło przy najechaniu */
    color: var(--primary-dark); /* Ciemniejszy fioletowy tekst */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Footer */
footer {
    background-color: #292841; /* Ciemniejsze tło */
    color: rgba(255, 255, 255, 0.8); /* Lepsza czytelność tekstu */
    padding: 70px 0 20px;
    font-size: 0.95rem; /* Lekko mniejsza czcionka w stopce */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Mniejsze kolumny */
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo-section p {
     color: rgba(255, 255, 255, 0.7); /* Jeszcze jaśniejszy tekst pod logo */
     margin-top: 10px; /* Odstęp pod logo */
}


.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px; /* Zmniejszony margines */
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.footer-links h3 {
    font-size: 1.1rem; /* Lekko większy nagłówek linków */
    margin-bottom: 20px;
    color: var(--white); /* Biały nagłówek dla kontrastu */
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 12px; /* Większy odstęp między linkami */
}

.footer-links ul li a {
     color: rgba(255, 255, 255, 0.8); /* Jaśniejszy kolor linków */
     transition: color 0.3s;
}


.footer-links ul li a:hover {
    color: var(--primary-light); /* Jaśniejszy fiolet przy najechaniu */
}

.footer-contact h3 {
     font-size: 1.1rem;
     margin-bottom: 20px;
     color: var(--white);
     font-weight: 600;
}

.footer-contact {
    font-size: 0.95rem; /* Dopasowanie rozmiaru czcionki */
}

.footer-contact p {
    margin-bottom: 10px;
    line-height: 1.5; /* Poprawa czytelności */
}

.copyright {
    text-align: center;
    padding-top: 30px; /* Większy odstęp */
    margin-top: 30px; /* Dodatkowy margines górny */
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Wyraźniejsza linia */
    font-size: 0.9rem; /* Mniejsza czcionka praw autorskich */
    color: rgba(255, 255, 255, 0.6); /* Mniej intensywny kolor */
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Dodano padding dla małych ekranów */
}

.modal-content {
    background-color: var(--white);
    padding: 30px 40px; /* Dopasowano padding */
    border-radius: 10px; /* Mniejsze zaokrąglenie */
    max-width: 650px; /* Zmniejszono max-width */
    width: 100%;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    /* Animacja pojawiania się modala */
    animation: fadeInModal 0.3s ease-out;
}

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


.close-modal {
    position: absolute;
    top: 15px; /* Bliżej rogu */
    right: 15px; /* Bliżej rogu */
    font-size: 28px; /* Większy krzyżyk */
    font-weight: bold;
    cursor: pointer;
    color: #aaa; /* Szary krzyżyk */
    transition: all 0.3s;
    z-index: 10;
    line-height: 1; /* Zapobiega problemom z wysokością */
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg); /* Efekt obrotu */
}

.modal h2 {
     text-align: center; /* Wyśrodkowanie tytułu modala */
     margin-bottom: 10px; /* Mniejszy odstęp */
     color: var(--primary-dark);
}
.modal p {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}


.modal-form {
    margin-top: 25px;
}

.form-group {
    margin-bottom: 20px; /* Mniejszy odstęp */
}

.form-group label {
    display: block;
    margin-bottom: 8px; /* Mniejszy odstęp */
    font-weight: 600; /* Grubsza etykieta */
    font-size: 0.9rem; /* Mniejsza etykieta */
    color: var(--dark-gray);
}

.form-group input {
    width: 100%;
    padding: 12px 15px; /* Dopasowany padding */
    border: 1px solid #ccc; /* Subtelniejsza ramka */
    border-radius: 6px; /* Mniejsze zaokrąglenie */
    font-size: 1rem; /* Standardowy rozmiar czcionki */
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
    outline: none;
}

.form-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem; /* Standardowy rozmiar */
    border-radius: 8px; /* Dopasowane zaokrąglenie */
    margin-top: 10px; /* Odstęp nad przyciskiem */
}

/* Program Modal Styles */
.program-content {
    margin-top: 20px;
}

.program-module {
    margin-bottom: 20px;
    padding: 20px; /* Większy padding */
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color); /* Akcent kolorystyczny */
}

.program-module h4 {
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 600;
}

.program-module ul {
    list-style-type: none; /* Usunięcie domyślnych punktorów */
    padding-left: 5px; /* Niewielkie wcięcie */
}

.program-module ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px; /* Miejsce na ikonę */
    color: #555;
}
.program-module ul li::before {
    content: "▹"; /* Inny punktor */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;

}


.program-presentation {
    margin-top: 30px;
    text-align: center; /* Wyśrodkowanie nagłówka */
}
.program-presentation h4 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}


.program-presentation iframe {
    border-radius: 8px; /* Mniejsze zaokrąglenie */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Responsywność */
}

/* Demo Modal Styles */
.demo-video {
    margin: 20px 0 30px; /* Większy margines dolny */
    position: relative;
    padding-bottom: 56.25%; /* Proporcje 16:9 */
    height: 0;
    overflow: hidden;
}

.demo-video iframe {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-description {
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.demo-description h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-weight: 600;
}

.demo-description ul {
    list-style-type: none; /* Usunięcie punktorów */
    padding-left: 5px;
    margin-bottom: 15px;
}

.demo-description ul li {
    margin-bottom: 8px;
     position: relative;
     padding-left: 20px;
     color: #555;
}

.demo-description ul li::before {
    content: "✓"; /* Checkmark */
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary-color);
    font-weight: bold;
}
.demo-description p {
     text-align: left; /* Reset wyśrodkowania dla tego paragrafu */
     font-size: 0.95rem;
     color: #666;
}

/* Zwiększono max-width dla modali z treścią wideo/programem */
#programModal .modal-content,
#demoModal .modal-content {
    max-width: 800px;
}

/* Animation on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    .competencies-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .hero h1 {
        font-size: 2.8rem; /* Zmniejszono font */
    }
     .hero p {
        font-size: 1.1rem;
    }
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Mniejsze kolumny na tabletach */
    }

}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .menu {
        position: absolute;
        top: 75px; /* Dopasowano pozycję menu */
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 10px 0; /* Zmniejszono padding pionowy */
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        display: none; /* Ukryte domyślnie */
        max-height: calc(100vh - 75px); /* Ograniczenie wysokości */
        overflow-y: auto; /* Scrollowanie, jeśli menu jest za długie */
    }

    .menu.active {
        display: flex; /* Pokazuje aktywne menu */
    }

    .menu li {
        margin: 0; /* Usunięto marginesy */
        width: 100%;
    }

    .menu li a {
        display: block;
        padding: 15px 20px; /* Większy padding dla łatwiejszego klikania */
        border-bottom: 1px solid var(--gray); /* Linia oddzielająca */
        border-radius: 0; /* Usunięto zaokrąglenie */
    }
     .menu li:last-child a {
         border-bottom: none; /* Usuwa linię pod ostatnim elementem */
     }

    .menu li a:hover {
        background-color: var(--light-bg); /* Zmieniono tło hover */
        color: var(--primary-color);
    }


    .courses-grid {
        grid-template-columns: 1fr; /* Jedna kolumna na mobilnych */
        gap: 20px; /* Mniejszy odstęp */
    }
     .competencies-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }


    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Mniejszy odstęp */
    }
    .hero-btns .btn {
         width: 80%; /* Przyciski zajmują większość szerokości */
         max-width: 300px; /* Ograniczenie maksymalnej szerokości */
    }


    .hero h1 {
        font-size: 2.2rem; /* Jeszcze mniejszy font */
    }
     .hero p {
        font-size: 1rem;
        padding: 0 10px; /* Padding dla tekstu w hero */
    }

     .section-title h2 {
        font-size: 2rem;
    }
     .section-title p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .footer-content {
        grid-template-columns: 1fr; /* Jedna kolumna w stopce */
        text-align: center; /* Wyśrodkowanie w stopce */
    }
    .footer-logo-section, .footer-links, .footer-contact {
        margin-bottom: 30px; /* Odstępy między sekcjami stopki */
    }
    .footer-links ul {
        padding: 0;
    }
     .footer-links h3, .footer-contact h3 {
         margin-bottom: 15px;
     }
     .modal-content {
          padding: 20px; /* Mniejszy padding modala */
     }
     .close-modal {
          top: 10px;
          right: 10px;
          font-size: 24px;
     }


}

@media (max-width: 576px) {
    .course-buttons {
        flex-direction: column; /* Przyciski jeden pod drugim */
        gap: 10px;
    }
     .course-buttons .btn {
         width: 100%; /* Przyciski na całą szerokość */
     }
     .category-filter {
         gap: 8px; /* Mniejszy odstęp między filtrami */
     }
     .category-btn {
          padding: 8px 15px; /* Mniejszy padding filtrów */
          font-size: 0.9rem;
     }
     .container {
          padding: 0 15px; /* Mniejszy padding kontenera */
     }
      .hero {
        padding: 80px 0; /* Mniejszy padding hero */
      }
      .featured-courses, .catalog, .competencies, .add-course {
          padding: 80px 0; /* Mniejszy padding sekcji */
      }
       footer {
           padding-top: 50px;
       }
       .modal-content {
           padding: 20px 15px; /* Jeszcze mniejszy padding modala */
       }


}