* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}
:root {
    --text-color-white: #fff;
}
body {
    background: url("../images/wiosna26.jpg") no-repeat center center fixed;
    background-size: cover;
    min-width: 480px;
}
    body.no-scroll {
        overflow: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
/* -- Wrapper -- */
.wrapper {
    width: 100%;
}/* -- END Wrapper -- */
    /* -- Header -- */
    header {
        display: flex;
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
    }
        .logo-header {
            display: flex;
            align-items: center;
            text-align: center;
        }
            .logo {
                max-width: 220px;
            }
            .title {
                font-size: 28px;
                font-weight: 600;
                line-height: 1.3;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: var(--text-color-white);
                text-shadow: 3px 3px 5px #003366;
            }/* -- END Header -- */
    /* -- Social Media -- */
    .social-media {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        gap: 14px;
        padding: 12px 18px;
        background: rgba(0,0,0,0.65);
        backdrop-filter: blur(6px);
        border-bottom-left-radius: 14px;
        border-bottom-right-radius: 14px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.35);
    }
        .social-media a {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
            .social-media a::after {
                content: attr(aria-label);
                position: absolute;
                bottom: -50px;
                left: 50%;
                transform: translateX(-50%) translateY(5px);
                background: rgba(0,0,0,0.85);
                color: #fff;
                padding: 12px;
                border-radius: 6px;
                font-size: 17px;
                white-space: nowrap;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.3s ease, transform 0.3s ease;
                box-shadow: 0 4px 12px rgba(0,0,0,0.35);
                z-index: 10;
            }
            .social-media a::before {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 50%;
                transform: translateX(-50%) translateY(5px);
                border-width: 5px;
                border-style: solid;
                border-color: rgba(0,0,0,0.85) transparent transparent transparent;
                opacity: 0;
                transition: opacity 0.3s ease, transform 0.3s ease;
                z-index: 10;
            }
                .social-media a:hover::after,
                .social-media a:hover::before {
                    opacity: 1;
                    transform: translateX(-50%) translateY(0);
                }
            .social-media a i {
                font-size: 32px;
            }
        .social-media a[aria-label*="Facebook"] i {
            color: #1877f2;
        }
        .social-media a[aria-label*="YouTube"] i {
            color: #ff0000;
        }/* -- END Social Media -- */    
/* -------------------------------------------------------- */
    /* -- Carousel -- */
    .carousel {
        margin: 0 auto;
        width: 50%;
        display: flex;
        overflow-x: auto;
    }
    .carousel::-webkit-scrollbar {
        display: none;
    }
        .group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1em;
            animation: spin 30s infinite linear;
            padding-right: 1em;
        }
            .card {
                flex: 0 0 3em;
                height: 2.5em;
                background: cornflowerblue;
                font-size: 3em;
                border-radius: .2em;
                text-align: center;
                align-content: center;
            }
                .card img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: .2em;
                }
        @keyframes spin {
            from {translate: 0;}
            to {translate: -100%;}
        }/* -- END Carousel -- */
/* -------------------------------------------------------- */
    /* -- Nav -- */
    nav {
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(6px);
        box-shadow: 0 4px 15px rgba(0,153,77,0.25);
        padding: 18px 0;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        position: sticky;
        top: 0;
        z-index: 100;
    }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
            .navbar li {
                list-style: none;
                position: relative;
            }
            .navbar a {
                display: inline-block;
                padding: 8px 12px;
                font-size: 22px;
                font-weight: 600;
                text-transform: uppercase;
                text-decoration: none;
                color: var(--text-color-white);
                position: relative;
                transition: background 0.25s ease, color 0.25s ease;
                border-radius: 6px;
            }
                .navbar a:hover {
                    background: #003366;
                    color: #fff;
                }
                .navbar a.active {
                    background: #003366;
                    color: #fff;
                }
                .navbar a i {
                    font-weight: bold;
                }
        .submenu {
            position: absolute;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            opacity: 0;
            visibility: hidden;
            min-width: 140px;
            text-align: center;
            background: rgba(0,0,0,0.9);
            box-shadow: 0 6px 20px rgba(0,153,77,0.25);
            border-radius: 8px;
            transition: all 0.3s ease;
            z-index: 100;
        }
            .submenu li {
                display: block;
            }
            .submenu a {
                display: block;
                font-size: 17px;
                padding: 8px 10px;
                margin: 5px 0;
                transition: background 0.25s ease, color 0.25s ease;
                border-radius: 4px;
            }
                .submenu a:hover {
                    background: #003366;
                    color: #fff;
                }
                .submenu a.active {
                    background: #003366;
                    color: #fff;
                }
            .navbar li:hover .submenu {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }/* -- END Nav -- */
/* -------------------------------------------------------- */
    /* -- Main -- */
    main {
        max-width: 1000px;
        margin: 5px auto 10px;
        padding: 10px;
    }
        .section-groups {
            display: none;
            animation: fadeSection .35s ease;
        }
            .section-groups.active {
                display: block;
            }
        @keyframes fadeSection {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }/* -- END Main -- */
            /* -- Article -- */
            article {
                display: flex;
                flex-wrap: wrap;
                flex-direction: row;
                align-items: flex-start;
                gap: 20px;
                padding: 20px;
                margin-top: 10px;
                background-color: rgba(0, 0, 0, 0.7);
                border: 1px solid rgba(0,153,77,0.25);
                box-shadow: 0 6px 18px rgba(0,0,0,0.35);
                transition: transform .5s ease;
            }
            article:first-child {
                margin-top: 0;
            }
                article:hover{
                    transform: translateY(-3px);
                }
            .home-img {
                max-width: 160px;
                flex-shrink: 0;
            }
                .home-img img {
                    width: 100%;
                    height: auto;
                    border-radius: 6px;
                    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
                }
            .home-article-text {
                flex: 1;
                min-width: 200px;
                display: flex;
                flex-direction: column;
                text-align: justify;
            }
                .home-title {
                    font-size: 24px;
                    margin-bottom: 15px;
                    letter-spacing: 1.5px;
                    color: var(--text-color-white);
                    text-shadow: 1px 1px 3px rgba(0,153,77,0.6);
                }
                .home-text {
                    font-size: 18px;
                    line-height: 1.7;
                    letter-spacing: 1px;
                    color: var(--text-color-white);
                }
                .home-text-hidden {
                    font-size: 18px;
                    line-height: 1.7;
                    letter-spacing: 1px;
                    max-height: 0;
                    opacity: 0;
                    overflow: hidden;
                    color: var(--text-color-white);
                    transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out;
                }
                    .home-text-hidden.show {
                        max-height: 1000px;
                        opacity: 1;
                    }
                    .home-button {
                        align-self: flex-end;
                        margin-top: 10px;
                        padding: 10px 20px;
                        border: none;
                        border-radius: 5px;
                        background: #003366;
                        color: var(--text-color-white);
                        font-weight: 600;
                        cursor: pointer;
                        transition: all 0.3s ease-in-out;
                    }
                        .home-button:hover {
                            background: #fff;
                            color: #003366;
                            transform: translateY(-2px);
                            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
                        }
                .rekolekcje25 {
                    color: #ff93ff;
                    font-weight: bold;
                    letter-spacing: 1px;
                    text-decoration: none;
                }/* -- END Article -- */
            /* -- Pagination -- */
            .pagination {
                margin: 15px 0;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
                flex-wrap: wrap;
            }
                .pagination a,
                .pagination span {
                    min-width: 40px;
                    height: 40px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-decoration: none;
                    font-weight: 600;
                    border-radius: 50%;
                    transition: all .25s ease;
                }
                .pagination a {
                    background: #f2f4f7;
                    color: #003366;
                    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
                }
                    .pagination a:hover {
                        background: #003366;
                        color: white;
                        transform: translateY(-2px);
                        box-shadow: 0 5px 12px rgba(0,0,0,0.25);
                    }
            .pagination .active {
                background :#003366;
                color: white;
                box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            }
            .pagination .dots {
                background: none;
                color: #888;
            }
            .pagination .prev,
            .pagination .next {
                border-radius: 20px;
                padding: 0 16px;
            }/* -- END Pagination -- */
/* -------------------------------------------------------- */
    /* -- Button UP -- */
    #backToTop {
        position: fixed;
        bottom: clamp(20px, 5vh, 30px);
        right: clamp(15px, 4vw, 25px);
        width: clamp(42px, 6vw, 52px);
        height: clamp(42px, 6vw, 52px);
        background: #003366;
        color: #fff;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 10px rgba(255,255,255,0.9);
        transition: all 0.3s ease;
        z-index: 1000;
    }
        #backToTop:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 22px rgba(0,0,0,0.4);
        }
        #backToTop:active {
            transform: scale(0.95);
        }
            #backToTop i {
                font-size: clamp(40px, 3vw, 50px);
                pointer-events: none;
                font-weight: bold;
            }/* -- END Button UP -- */
/* -------------------------------------------------------- */
    /* -- All Sections -- */
    .section-about,
    .section-group,
    .section-world,
    .section-formation,
    .section-materials,
    .section-support,
    .section-links,
    .section-contact,
    .section-media {
        padding: 16px;
        background: rgba(0, 0, 0, 0.7);
        box-shadow: 0 0 10px rgba(0,153,77,0.3);
    }/* -- END All Sections -- */
/* -------------------------------------------------------- */
    /* -- About -- */
    .about-h2 {
        position: relative;
        margin-top: 15px;
        padding: 7px 0;
        text-align: center;
        border-radius: 5px;
        background-color: #003366;
        font-size: 22px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-color-white);
        text-shadow: 2px 2px 3px #000;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    .about-h2:hover {
        background-color: #002244;
        box-shadow: 0 0 10px #fff;
    }
    .about-h2:first-child {
        margin-top: 0;
    }
        .about-h2::after {
            content: '▶';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 28px;
            transition: transform 0.3s ease-in-out;
        }
        .about-h2.active::after {
            content: '▼';
            padding-top: 2px;
        }
    .about-toggle-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out;
    }
    .about-toggle-content.active{
        max-height: 1000px;
        opacity: 1;
    }
    .about-text,
    .about-text-right {
        font-size: 18px;
        line-height: 1.7;
        letter-spacing: 1px;
        color: #fff;
        padding: 10px 20px;
        text-align: justify;
    }
    .about-text-right {
        text-align: right;
        text-indent: 0;
    }
    .about-text {
        text-indent: 40px;
    }
        .about-img {
            width: 100%;
            max-width: 450px;
            margin: 10px auto;
            display: block;
            box-shadow: 0 0 7px #003366;
            border-radius: 8px;
            cursor: zoom-in;
            transition: transform 0.3s ease;
        }
            .image-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.9);
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 2000;
            }
                .image-overlay img {
                    max-width: 90%;
                    max-height: 90%;
                    border-radius: 10px;
                    box-shadow: 0 0 20px #000;
                    cursor: zoom-out;
                }
    .about-toggle-content ul,
    .about-ul {
        padding-left: 60px;
        font-size: 18px;
        letter-spacing: 1px;
        color: #fff;
        list-style: none;
    }
        .about-toggle-content ul li,
        .about-ul li {
            margin-bottom: 5px;
            line-height: 1.5;
            position: relative;
            padding-left: 25px;
        }
            .about-ul li::before {
                content: "•";
                position: absolute;
                left: 0;
                color: #0073e6;
                text-shadow: 0 0 2px #fff;
                font-size: 18px;
            }/* -- END About -- */
/* -------------------------------------------------------- */
    /* -- Group -- */
    .group-h2 {
        position: relative;
        margin-top: 15px;
        padding: 7px 0;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 22px;
        color: var(--text-color-white);
        background-color: #003366;
        text-shadow: 2px 2px 3px #000;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    .group-h2:first-child {
        margin-top: 0;
    }
    .group-h2:hover {
        background-color: #002244;
        box-shadow: 0 0 10px #fff;
    }
        .group-h2::after {
            content: '▶';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 28px;
            transition: transform 0.3s ease-in-out;
        }
            .group-h2.active::after {
                content: '▼';
            }
        .group-toggle-content {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out;
        }
            .group-toggle-content.active {
                max-height: 1000px;
                opacity: 1;
            }
        .group-text {
            font-size: 18px;
            line-height: 1.7;
            padding: 10px 20px;
            letter-spacing: 1px;
            color: #fff;
            text-align: justify;
        }/* -- END Group -- */
/* -------------------------------------------------------- */
    /* -- World -- */
    .world-h2 {
        background-color: #003366;
        margin-top: 15px;
        padding: 10px 0;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 2px 2px 3px #000;
        border-radius: 5px;
        font-size: 22px;
        color: var(--text-color-white);
    }
    .world-h2:first-child {
        margin-top: 0;
    }
        .world-map {
            display: block;
            margin: 20px auto;
            max-width: 100%;
            box-shadow: 0 0 12px #000;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
            .world-map:hover {
                transform: scale(1.02);
            }
        .world-block {
            display: flex;
            flex-direction: column;
            padding: 10px;
            max-width: 800px;
            margin: 20px auto;
        }
            .world-item {
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: 18px;
                border-bottom: 2px solid #003366;
                padding: 15px 10px;
                letter-spacing: 1px;
                transition: background-color 0.3s ease, transform 0.3s ease;
            }
                .world-item:last-child {
                    border-bottom: none;
                }
                .world-item:hover {
                    background-color: rgba(0, 153, 77, 0.2);
                    transform: translateY(-2px);
                }
                    .country-info {
                        display: flex;
                        align-items: center;
                        gap: 15px;
                    }
                        .country {
                            font-weight: bold;
                            color: #fff;
                        }
                        .flag {
                            width: 40px;
                            height: auto;
                            flex-shrink: 0;
                            border-radius: 5px;
                            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
                        }
                    .world-item a {
                        color: #fff;
                        padding: 8px 16px;
                        text-decoration: none;
                        border-radius: 5px;
                        transition: all 0.3s ease-in-out;
                    }
                        .world-item a:hover {
                            background-color: #00994d;
                            color: #fff;
                            transform: translateY(-2px);
                        }
                    .globe-fa {
                        font-size: 45px;
                        color: #00994d;
                    }/* -- END World -- */
/* -------------------------------------------------------- */
    /* -- Formation -- */
    .formation-h2 {
        position: relative;
        margin-top: 15px;
        padding: 10px 0;
        text-align: center;
        text-transform: uppercase;
        font-size: 22px;
        letter-spacing: 1px;
        color: var(--text-color-white);
        background-color: #003366;
        border-radius: 6px;
        cursor: pointer;
        text-shadow: 1px 1px 3px #000;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }
    .formation-h2:first-child {
        margin-top: 0;
    }
    .formation-h2:hover {
        background-color: #002244;
        box-shadow: 0 0 10px #fff;
    }
        .formation-h2::after {
            content: '▶';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 28px;
            transition: transform 0.3s ease-in-out;
        }
            .formation-h2.active::after {
                content: '▼';
            }
        .formation-toggle-content {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out;
            padding: 0 10px;
        }
            .formation-toggle-content.active {
                max-height: 2000px;
                opacity: 1;
            }
        .formation-text {
            font-size: 18px;
            line-height: 1.7;
            letter-spacing: 1px;
            color: #fff;
            text-align: justify;
            padding: 10px 0;
        }
        .formation-img {
            display: block;
            margin: 10px auto;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 0 7px #00994d;
        }
            .formation-ul {
                padding-left: 40px;
                list-style: disc;
                color: #fff;
            }
                .formation-ul li {
                    margin-bottom: 10px;
                    line-height: 1.6;
                }
                    .formation-li-bold {
                        font-weight: bold;
                        color: #00cc66;
                    }/* -- END Formation -- */
/* -------------------------------------------------------- */



/* -- Formation -- *//* -- Materials -- *//* -- Support -- *//* -- Links -- *//* -- Contact -- *//* -- Media -- */
            
            .materials-h2,
            .support-h2,
            .media-h2 {
                background-color: #00994d;
                box-shadow: 0 0 5px #fff;
                margin-top: 15px;
                padding: 7px 0;
                text-align: center;
                text-transform: uppercase;
                letter-spacing: 1px;
                text-shadow: 2px 2px 3px #000;
                border-radius: 5px;
                font-size: 22px;
                color: var(--text-color-white);
            }
            .materials-h2:first-child,
            .support-h2:first-child,
            .media-h2:first-child {
                margin-top: 0;
            }
            
                
                
            
            
           
                
            .support-text {
                text-align: justify;
                font-size: 18px;
                line-height: 1.7;
                padding: 10px 20px;
                letter-spacing: 1px;
                color: #fff;
            }
            
                
            
                
            
            @media (max-width: 768px) {
                
                .section-formation,
                .section-materials,
                .section-support,
                .section-links,
                .section-contact,
                .section-media {
                    margin-top: 10px;
                }
                    
                    .formation-h2,
                    .materials-h2,
                    .support-h2,
                    .media-h2 {
                        font-size: 18px;
                        padding: 5px;
                    }
                        
                        .formation-h2::after {
                            font-size: 20px;
                        }
                    
                    .formation-text {
                        font-size: 14px;
                        padding: 5px 10px;
                    }
                    
                    .formation-text {
                        text-indent: 20px;
                    }
                    
                        .formation-img {
                            width: 130px;
                            height: 90px;
                        }
                    
                    .formation-toggle-content ul {
                        padding-left: 35px;
                    }
                        
                        .formation-ul {
                            padding: 0 10px;
                            font-size: 14px;
                        }
            }/* -- END Formation -- *//* -- END Materials -- *//* -- END Support -- *//* -- END Links -- *//* -- END Contact -- *//* -- END Media -- */
            
            /* -- Formation -- */
                /* ===== Karta tematu ===== */
                .topic-card {
                    padding: 5px;
                    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                    background: #1e1e1e;
                    border-radius: 12px;
                    margin: 15px 0 5px 0;
                    overflow: hidden;
                    border: 1px solid rgba(0, 153, 77, 0.2);
                    transition: 0.3s ease;
                }
                    .topic-card:hover {
                        border-color: #00994d;
                        box-shadow: 0 0 15px rgba(0, 153, 77, 0.3);
                    }
                /* ===== Nagłówek (klikany) ===== */
                .topic-header {
                    padding: 15px 20px;
                    font-size: 22px;
                    font-weight: 600;
                    cursor: pointer;
                    background: #252525;
                    color: #fff;
                    position: relative;
                }
                    .topic-header::after {
                        content: "▼";
                        position: absolute;
                        right: 20px;
                        transition: transform 0.3s ease;
                    }
                /* Obrót strzałki po otwarciu */
                .topic-card.active .topic-header::after {
                    transform: rotate(180deg);
                }
                /* ===== Zawartość (accordion) ===== */
                .topic-content {
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.4s ease;
                    padding: 0 20px;
                    background: #1e1e1e;
                }
                    .topic-card.active .topic-content {
                        padding: 15px 20px;
                        max-height: 2000px;
                    }
                /* ===== Lekcje ===== */
                .lesson-title {
                    margin-top: 10px;
                    font-weight: 500;
                    color: #00cc66;
                    font-size: 20px;
                    font-weight: 600;
                }
                /* ===== Materiały ===== */
                .material-link, .audio-player {
                    display: block;
                    margin: 15px 0 15px 20px;
                    text-decoration: none;
                    color: #ddd;
                    font-size: 18px;
                    transition: 0.2s ease;
                }
                    .material-link:hover {
                        color: #00cc66;
                        transform: translateX(5px);
                    }
                    .badge-pdf {
                        background: #c0392b;
                        color: #fff;
                        padding: 2px 6px;
                        border-radius: 4px;
                        font-size: 0.75rem;
                        margin-right: 6px;
                    }
                    /* Audio Player */
                    .audio-player {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        margin-left: 16px;
                        margin-top: 4px;
                    }
                        .audio-player audio {
                            width: 300px; /* węższy pasek */
                            height: 40px;  /* kompaktowy */
                            outline: none;
                        }
                            .badge-audio {
                                background: #27ae60;
                                color: #fff;
                                padding: 2px 6px;
                                border-radius: 4px;
                                font-size: 0.75rem;
                                margin-right: 6px;
                            }
            @media(max-width: 768px) {
                .formation-title {
                    margin: 10px 0 5px 20px;
                    padding: 5px;
                    font-size: 18px;
                    width: 50%;
                }
                    .formation-subtitle {
                        padding: 5px 5px 5px 10px;
                        font-size: 14px;
                    }
                        .formation-subtitle::after {
                            font-size: 18px;
                        }
                        .formation-subtitle-content {
                            flex-direction: column;
                            align-items: center;
                            width: 95%;
                        }
                            .formation-subtitle-books {
                                flex-direction: row;
                                align-items: center;
                                width: 100%;
                                padding: 5px;
                            }
                                .formation-book-item span {
                                    font-size: 14px;
                                }
                                .formation-book-item {
                                    width: 130px;
                                    height: 90px;
                                    gap: 3px;
                                }
                                    .formation-book-item a i {
                                        font-size: 36px;
                                    }
                                .formation-subtitle-books a {
                                    font-size: 14px;
                                    padding: 5px 30px;
                                    text-align: center;
                                }
                                .formation-subtitle-audio-item {
                                    font-size: 14px;
                                }
                            .formation-subtitle-audio-items audio {
                                width: 250px;
                                height: 30px;
                            }
                    .f-titles-span {
                        font-size: 14px;
                        margin: 0 10px;
                    }
                    .f-titles-span::after {
                        font-size: 24px;
                    }
                        .f-content-block {
                            width: 97%;
                        }
                            .f-subtitle-span {
                                font-size: 14px;
                                width: 97%;
                            }
                            .f-subtitle-span::after {
                                font-size: 24px;
                            }
                        .f-books {
                            flex-direction: column;
                            gap: 10px;
                            margin-top: 5px;
                        }
            }/* -- END Formation -- */
            /* -- Materials -- */
            .download-files {
                margin-top: 20px;
            }
                .download-header {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    padding: 10px;
                    justify-content: center;
                    margin-bottom: 15px;
                }
                    .download-text {
                        font-size: 18px;
                        letter-spacing: 1px;
                        padding: 10px;
                        text-shadow: 1px 1px 2px #000;
                        font-weight: bold;
                        color: #fff;
                    }
                    .download-header img {
                        width: 30px;
                        cursor: pointer;
                        box-shadow: 0 0 10px #00994d;
                    }
                .pdf-list {
                    padding-left: 75px;
                    font-size: 18px;
                }
                    .pdf-list li {
                        position: relative;
                        list-style-type: decimal;
                        color: #fff;
                    }
                        .pdf-list li a {
                            display: block;
                            width: 100%;
                            text-decoration: none;
                            color: #fff;
                            width: calc(100% - 2em);
                            padding: 10px;
                            margin: 0 0 10px 10px;
                            border-radius: 4px;
                            letter-spacing: 1px;
                            border-left: 4px solid #00994d;
                            box-shadow: 0 0 5px #fff;
                            transition: all 0.5s ease-in-out;
                        }
                            .pdf-list li a:hover {
                                background-color: #00994d;
                                border-left: 4px solid #e0e7ff;
                                color: #fff;
                            }
            @media(max-width: 768px) {
                .download-files {
                    margin-top: 10px;
                }
                    .download-header {
                        gap: 5px;
                        padding: 5px;
                        margin-bottom: 10px;
                    }
                        .download-text {
                            font-size: 14px;
                            padding: 5px;
                        }
                        .download-header img {
                            margin-right: 5px;
                        }
                    .pdf-list {
                        padding-left: 25px;
                        font-size: 14px;
                    }
            }/* -- END Materials -- */
            /* -- Support -- */
            .support-box {
                background-color: rgba(0, 0, 0, 0.3);
                box-shadow: 0 0 5px #00994d;
                width: 97%;
                margin: 20px auto 10px auto;
                border-radius: 5px;
            }
                .support-shadow {
                    color: #fff;
                    font-weight: 600;
                    font-size: 20px;
                    text-shadow: 2px 2px 3px #00994d;
                }
                    .section-support-ad {
                        display: flex;
                        justify-content: center;
                        padding: 10px 0 20px 0;
                        font-size: 18px;
                        gap: 50px;
                    }
                        .section-support-ad a {
                            text-decoration: none;
                            background-color: #00994d;
                            box-shadow: 0 0 7px #fff;
                            color: var(--color-white-text);
                            padding: 15px 25px;
                            border-radius: 5px;
                            transition: all .5s ease-in-out;
                        }
                            .section-support-ad a:hover {
                                background-color: #fff;
                                color: #000;
                            }
            @media(max-width: 768px) {
                .section-support-ad {
                    padding: 5px 0 10px 0;
                    font-size: 14px;
                    gap: 10px;
                }
                    .support-box {
                        margin: 10px auto 5px auto;
                    }
                        .support-text {
                            font-size: 14px;
                            padding: 5px 10px;
                        }
                        .support-shadow {
                            font-size: 16px;
                        }
                            .section-support-ad {
                                padding: 5px 0 10px 0;
                                font-size: 14px;
                                gap: 20px;
                            }
                                .section-support-ad a {
                                    padding: 7px 15px;
                                }
            }/* -- END Support -- */
            /* -- Links -- */
            .links-block {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                width: 100%;
                margin: 20px auto;
                gap: 15px;
            }
                .img-link {
                    width: 150px;
                    height: 70px;
                    object-fit: contain;
                    margin-bottom: 20px;
                }
                .link {
                    font-weight: 600;
                    font-size: 18px;
                    letter-spacing: 1px;
                }
                .links-item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    background-color: transparent;
                    padding: 20px;
                    width: 450px;
                    height: 200px;
                    text-decoration: none;
                    box-shadow: 0 0 7px #00994d;
                    border-radius: 5px;
                    color: #fff;
                    transition: all 0.5s ease-in-out;
                }
                    .links-item:hover {
                        background-color: #00994d;
                        color: #fff;
                    }
            @media(max-width: 768px) {
                .links-block {
                    margin: 5px auto;
                    gap: 15px;
                }
                    .img-link {
                        width: 130px;
                        height: 50px;
                        margin-bottom: 10px;
                    }
                    .link {
                        font-size: 14px;
                    }
                    .links-item {
                        padding: 10px;
                        width: 300px;
                        height: 150px;
                    }
            }/* -- END Links -- */
            /* -- Contact -- */
            .contact-header,
            .contact-content,
            .contact-footer {
                display: flex;
                align-items: center;
                gap: 15px;
                width: 97%;
                margin: 10px auto;
                padding: 30px;
                background-color: rgba(0, 0, 0, 0.3);
                box-shadow: 0 0 5px #00994d;
                border-radius: 5px;
            }
            .contact-content,
            .contact-footer {
                flex-direction: column;
            }
                .contact-header img {
                    width: 120px;
                }
                .contact-div-text {
                    padding: 13px 20px;
                }
                    .contact-div-text h2 {
                        font-size: 20px;
                        color: #fff;
                        margin-bottom: 15px;
                    }
                    .contact-div-text p {
                        display: flex;
                        align-items: center;
                        font-size: 18px;
                        line-height: 1.6;
                        letter-spacing: 1px;
                        gap: 10px;
                        color: #fff;
                    }
                .contact-text {
                    letter-spacing: 1px;
                    font-weight: 600;
                    color: #fff;
                    font-size: 18px;
                    margin-top: 40px;
                }
                    .contact-text:first-child {
                        margin-top: 0;
                    }
                .contact-name {
                    font-size: 18px;
                    color: #fff;
                }
                .contact-email {
                    color: #fff;
                    font-size: 18px;
                    letter-spacing: 1px;
                }
            @media (max-width: 768px) {
                .contact-header {
                    flex-direction: column;
                    text-align: center;
                    padding: 10px 0;
                    gap: 5px;
                }
                    .contact-header img {
                        width: 80px;
                    }
                    .contact-div-text {
                        padding: 7px 10px;
                    }
                    .contact-div-text p {
                        margin: 0 auto;
                        display: block;
                        width: fit-content;
                    }
                        .contact-div-text h2 {
                            font-size: 16px;
                            margin-bottom: 15px;
                        }
                        .contact-div-text p {
                            font-size: 14px;
                            gap: 5px;
                        }
                    .contact-text,
                    .contact-name,
                    .contact-email {
                        font-size: 14px;
                    }
                    .contact-text {
                        margin-top: 20px;
                    }
            }/* -- END Contact -- */
            
            /* -- Media -- */
            /* -- News -- */
            .news-header {
                display: flex;
                align-items: center;
                gap: 15px;
                padding: 10px;
                justify-content: center;
                margin: 20px;
            }
                .news-text {
                    font-size: 18px;
                    letter-spacing: 1px;
                    padding: 10px;
                    text-shadow: 1px 1px 2px #000;
                    font-weight: bold;
                    color: #fff;
                }
                .news-header img {
                    width: 30px;
                    cursor: pointer;
                    box-shadow: 0 0 10px #00994d;
                }
            .news-title {
                display: block;
                padding: 5px;
                font-size: 28px;
                border-radius: 5px;
                text-align: center;
                font-weight: 600;
                letter-spacing: 1px;
                background: linear-gradient(to bottom, #00994d, #00cc66, #66ff99);
                box-shadow: 0 0 5px #fff;
                text-shadow: 2px 2px 3px #000;
                color: #fff;
                width: 85%;
                margin: 0 auto 20px auto;
            }
                .news-list {
                    display: flex;
                    justify-content: center;
                    flex-wrap: wrap;
                    gap: 20px;
                    margin: 20px auto;
                }
                .news-list:last-child {
                    margin-bottom: 0;
                }
                    .news-main {
                        border-radius: 10px;
                        box-shadow: 0 0 10px #00994d;
                        transition: all 0.5s ease-in-out;
                    }
                        .news-main:hover {
                            transform: scale(1.05);
                            box-shadow: 0 0 20px #00cc66;
                        }
                    .news-second {
                        border-radius: 10px;
                        box-shadow: 0 0 10px #00994d;
                        transition: all 0.5s ease-in-out;
                    }
                        .news-second:hover {
                            transform: scale(1.02);
                            box-shadow: 0 0 20px #00cc66;
                        }
            @media (max-width: 768px) {
                .news-header {
                    margin: 10px;
                    padding: 5px;
                }
                    .news-text {
                        font-size: 14px;
                        padding: 5px;
                    }
                .news-title {
                    padding: 2px;
                    font-size: 20px;
                    margin: 0 auto 10px auto;
                }
                    .news-list {
                        gap: 10px;
                    }
                        .news-main {
                            width: 250px;
                        }
                        .news-second {
                            width: 130px;
                        }
            }/* -- END News -- */
            /* -- Audio -- */
            .audio-title-span {
                display: block;
                padding: 5px;
                font-size: 24px;
                border-radius: 5px;
                text-align: center;
                font-weight: 600;
                letter-spacing: 1px;
                background: linear-gradient(to bottom, #00994d, #00cc66, #66ff99);
                box-shadow: 0 0 5px #fff;
                text-shadow: 2px 2px 3px #000;
                color: #fff;
                width: 95%;
                margin: 10px auto 30px auto;
            }
                .audio-row {
                    display: flex;
                    justify-content: center;
                    gap: 50px;
                    flex-wrap: wrap;
                    margin-bottom: 40px;
                }
                .audio-row:last-child {
                    margin-bottom: 0;
                }
                    .audio-box {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        width: 350px;
                    }
                        .audio-title {
                            font-weight: bold;
                            color: #fff;
                            font-size: 18px;
                            margin-bottom: 10px;
                        }
                        .audio-box audio {
                            width: 100%;
                        }
            @media (max-width: 768px) {
                .audio-title-span {
                    font-size: 20px;
                    margin: 15px auto;
                }
                    .audio-row {
                        gap: 20px;
                        margin-bottom: 20px;
                    }
                        .audio-title {
                            font-size: 14px;
                            margin-bottom: 5px;
                        }
                        .audio-box audio {
                            width: 80%;
                            height: 40px;
                        }
            }/* -- END Audio -- */
            /* -- Gallery -- */
            .images-title {
                display: block;
                padding: 5px;
                font-size: 24px;
                border-radius: 5px;
                text-align: center;
                font-weight: 600;
                letter-spacing: 1px;
                background: linear-gradient(to bottom, #00994d, #00cc66, #66ff99);
                box-shadow: 0 0 5px #fff;
                text-shadow: 2px 2px 3px #000;
                color: #fff;
                width: 95%;
                margin: 10px auto 0 auto;
                position: relative;
                cursor: pointer;
            }
            .images-title::after {
                content: '▶';
                position: absolute;
                right: 20px;
                top: 0;
                font-size: 28px;
                transition: transform 0.3s ease-in-out;
            }
                .images-title.active::after {
                    content: '▼';
                    padding-top: 2px;
                }
            .images-content-block {
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 90%;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: all 0.6s ease-in-out;
            }
                .images-content-block.active {
                    max-height: 100%;
                    opacity: 1;
                }
                .gallery {
                    display: grid;
                    grid-template-columns: 1fr 1fr 1fr 1fr;
                    gap: 15px 15px;
                    list-style: none;
                    width: 90%;
                    margin: 0 auto;
                    padding: 10px;
                }
                    .thumbnail {
                        width: 100%;
                        overflow: hidden;
                        border-radius: 10px;
                        cursor: pointer;
                        box-shadow: 0 0 10px #fff;
                        border: 1px solid #fff;
                    }
                        .thumbnail img {
                            width: 100%;
                            height: 100%;
                            display: block;
                            transition: all 0.5s ease-in-out;
                        }
                            .thumbnail img:hover {
                                transform: scale(1.5);
                            }
            @media (max-width: 768px) {
                .images-title {
                    padding: 5px;
                    font-size: 20px;
                    margin: 15px auto 0 auto;
                }
                .images-title::after {
                    font-size: 22px;
                }
                    .images-content-block {
                        padding-top: 10px;
                    }
                    .gallery {
                        grid-template-columns: 1fr 1fr;
                        gap: 10px 10px;
                        padding: 5px;
                    }
            }/* -- END Gallery -- *//* -- END Media -- */
            /* -- Popup -- */
            .popup {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.8);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 1000;
            }
            .popup.hidden {
                display: none;
            }
                .popup__content {
                    max-width: 60%;
                    max-height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: relative;
                }
                    .popup__img {
                        max-width: 65%;
                        max-height: 50%;
                        border-radius: 8px;
                        object-fit: contain;
                    }
                    .popup__close {
                        position: absolute;
                        top: 10px;
                        right: 10px;
                        font-size: 70px;
                        cursor: pointer;
                        border-radius: 50%;
                        color: #fff;
                        font-weight: bold;
                    }
                        .popup__arrow {
                            position: absolute;
                            top: 50%;
                            transform: translateY(-50%);
                            font-size: 65px;
                            cursor: pointer;
                            color: #fff;
                            font-weight: bold;
                            border-radius: 7%;
                        }
                            .popup__arrow.left {
                                left: 10%;
                            }
                            .popup__arrow.right {
                                right: 10%;
                            }/* -- Popup -- */
     
        