        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa; 
            overflow-y: auto; 
            overflow-x: hidden;
            padding-top: 70px; 
        }

        .section-title {
            font-weight: 700;
            margin-bottom: 4rem;
            color: #343a40;
        }

        /* --- MENÜSÁV --- */
        .custom-navbar {
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(230, 230, 230, 0.8);
        }
        .navbar-contact {
            font-size: 0.85rem;
        }
        .navbar-contact a {
            color: #495057;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .navbar-contact a:hover {
            color: #673ab7;
        }

        /* --- FŐOLDAL HERO --- */
        .modern-background {
            position: absolute; 
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #e9eff5;
            overflow: hidden;
            z-index: -1;
        }

        .modern-background::before,
        .modern-background::after {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            z-index: -1;
        }

        .modern-background::before {
            background: linear-gradient(165deg, transparent 49.8%, rgba(255, 255, 255, 0.5) 50%, transparent 50.2%);
            transform: translateY(-20%) rotate(10deg);
        }

        .modern-background::after {
            background: linear-gradient(85deg, transparent 49.8%, rgba(255, 255, 255, 0.3) 50%, transparent 50.2%);
            transform: translateY(15%) rotate(-30deg);
        }
        
        .floating-logos {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 0;
            display: none;
        }

        .logo-box {
            position: absolute; border-radius: 12px; opacity: 0.7; object-fit: cover;
        }
        .logo-box.logo-1 { top: 20%; left: 12%; width: 80px; height: 80px; transform: rotate(-15deg); }
        .logo-box.logo-2 { top: 65%; left: 5%; width: 60px; height: 60px; transform: rotate(10deg); }
        .logo-box.logo-4 { top: 15%; right: 8%; width: 90px; height: 90px; transform: rotate(20deg); }
        .logo-box.logo-7 { top: 85%; left: 22%; width: 75px; height: 75px; transform: rotate(-5deg); }
        .logo-box.logo-8 { top: 80%; right: 5%; width: 55px; height: 55px; transform: rotate(15deg); }
        .logo-box.logo-9 { top: 5%; left: 3%; width: 65px; height: 65px; transform: rotate(30deg); }
        .logo-box.logo-10 { top: 25%; right: 32%; width: 60px; height: 60px; transform: rotate(-10deg); opacity: 0.4; }
        .logo-box.logo-11 { top: 70%; left: 40%; width: 80px; height: 80px; transform: rotate(20deg); opacity: 0.5; }

        .container { position: relative; }

        .character-chat-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            position: relative;
            height: calc(100vh - 70px);
            padding-top: 5vh;
        }

        .character-wrapper {
            flex: 0 0 30%;
            max-width: 30%;
            display: flex;
            justify-content: center;
            margin-top: 15vh;
        }

        .character-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        .speech-bubble-area {
            position: relative;
            display: flex;
            justify-content: flex-end;
            width: 45%;
        }

        .speech-bubble {
            background: #ffffff;
            border-radius: 1rem;
            padding: 2rem;
            width: 100%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .speech-bubble h1 {
            font-size: 2.2vw;
            line-height: 1.3;
            font-weight: 400;
            text-align: center;
            margin: 0.1em 0;
        }
        .speech-bubble p {
            font-size: 2.2vw;
            line-height: 1.3;
            font-weight: 400;
            text-align: center;
            margin: 10px 0 0.1em;
        }

        .bubble-tail {
            position: absolute;
            top: 15vh;
            right: -2rem;
            width: 80px;
            height: 80px;
            transform: rotate(-35deg);
        }

        .bubble-tail .dot {
            position: absolute; background: #ffffff; border-radius: 50%; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .bubble-tail .dot:nth-child(1) { width: 40px; height: 40px; top: 0; left: 0; }
        .bubble-tail .dot:nth-child(2) { width: 25px; height: 25px; top: 35px; left: 35px; }
        .bubble-tail .dot:nth-child(3) { width: 12px; height: 12px; top: 55px; left: 55px; }

        .scroll-down-icon {
            position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite;
        }
        .scroll-down-icon svg { width: 35px; height: 35px; fill: #343a40; }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-20px); }
            60% { transform: translateX(-50%) translateY(-10px); }
        }

        /* --- BEMUTATKOZÁS --- */
        #about-me-section {
            padding: 5rem 0;
            background: #fff;
        }
        #about-me-section h2 {
            font-weight: 700;
            color: #343a40;
            margin-bottom: 1.5rem;
        }
        #about-me-section p {
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        #about-me-section ul {
            list-style: none;
            padding-left: 0;
        }
        #about-me-section ul li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: #495057;
        }
        #about-me-section ul li .bi {
            color: #673ab7;
            margin-right: 0.75rem;
            margin-top: 0.2rem;
        }
        .carousel-item img {
            border-radius: 1rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            object-fit: cover;
        }

        /* --- FUNKCIÓK --- */
        #features-section {
            padding: 5rem 0;
            background: #f8f9fa;
        }
        .feature-card {
            background: #ffffff;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            text-align: center;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        }
        .feature-img { width: 100%; object-fit: contain; }
        .card-content { padding: 1.5rem; }
        .card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
        .card-text { font-size: 1rem; color: #6c757d; }

        /* --- ONLINE GYAKORLÁS --- */
        #online-prep-section {
            padding: 5rem 0;
            background-color: #fff;
        }
        .prep-point {
            background-color: #f8f9fa;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
            transition: transform 0.3s ease;
        }
        .prep-point:hover {
            transform: translateY(-5px);
        }
        .prep-point h3 { /* JAVÍTVA: h4-ről h3-ra */
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .prep-point p {
            color: #6c757d;
        }
        
        .video-wrapper {
            border-radius: 1rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .video-wrapper .ratio {
             border-radius: 1rem;
        }
        .video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .pointing-arrow-container {
            margin-bottom: 1.5rem;
        }
        .pointing-arrow {
            animation: point-float 2s ease-in-out infinite;
        }
        .arrow-icon {
            font-size: 3rem;
            color: #673ab7;
            filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.3));
        }
        @keyframes point-float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }

        
        /* --- TÉVHITEK --- */
        #myths-section {
            padding: 5rem 0;
            background-color: #e9eff5;
        }
        .myth-icon {
            font-size: 2.5rem;
            color: #dc3545;
            margin-right: 1.5rem;
            margin-top: 5px;
        }
        .myth-content .myth-title {
            font-weight: 700;
            font-size: 1.25rem;
            color: #343a40;
            margin-bottom: 0.5rem;
        }
        .myth-content .myth-explanation {
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.7;
        }
        
        /* --- ÖSSZEHASONLÍTÓ TÁBLÁZAT --- */
        .comparison-table-container {
            background-color: #fff;
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            overflow-x: auto;
        }
        .comparison-table {
            min-width: 700px;
        }
        .comparison-table thead th {
            color: #343a40;
            font-weight: 700;
            background-color: #f8f9fa;
            border-bottom-width: 2px;
            border-color: #dee2e6;
        }
        .comparison-table th, .comparison-table td {
            vertical-align: middle;
            text-align: center;
            padding: 1rem 0.75rem;
        }
        .comparison-table td:first-child, .comparison-table th:first-child {
            text-align: left;
            font-weight: 500;
        }
        .table-icon {
            font-size: 1.75rem;
        }
        .icon-success { color: #20c997; }
        .icon-warning { color: #ffc107; }
        .icon-danger { color: #dc3545; }
        .icon-explanation {
            font-size: 0.85rem;
            color: #6c757d;
            display: block;
            margin-top: 0.5rem;
        }

        /* --- SZOLGÁLTATÁSOK --- */
        #services-section {
            padding: 5rem 0;
            background: #fff;
        }
        .service-item {
            background-color: #f8f9fa;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }
        .service-item .service-img {
            padding: 0;
            margin: 0;
        }
        .service-item .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .service-item .service-text {
            padding: 3rem;
        }
        .service-item .service-text h3 {
            font-weight: 700;
            color: #343a40;
        }
        .service-item .service-text p {
            color: #6c757d;
            line-height: 1.7;
        }

        /* --- GY.I.K. --- */
        #faq-section {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        .accordion-item {
            background-color: #fff;
            border: none;
            border-radius: 0.75rem !important;
            margin-bottom: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s ease;
        }
        .accordion-item:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        .accordion-header {
            border-radius: 0.75rem;
        }
        .accordion-button {
            font-weight: 700;
            color: #343a40;
            background-color: #fff;
            border-radius: 0.75rem !important;
            box-shadow: none !important;
        }
        .accordion-button:not(.collapsed) {
            color: #5e35b1;
            background-color: #f3e5f5;
        }
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23343a40'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235e35b1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        .accordion-body {
            color: #495057;
            line-height: 1.6;
        }

        /* --- GARANCIA --- */
        #guarantee-section {
            padding: 5rem 0;
            background-color: #e9eff5;
        }
        .guarantee-box {
            background-color: #fff;
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }
        .guarantee-box .guarantee-icon {
            font-size: 4rem;
            color: #673ab7;
        }
        .guarantee-box h2 {
            font-weight: 700;
            color: #343a40;
        }
        .guarantee-box p {
            color: #6c757d;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- CSOMAGOK --- */
        #packages-section {
            padding: 5rem 0;
            background: #fff;
        }
        .pricing-card {
            background-color: #fff;
            border: 1px solid #dee2e6;
            border-radius: 1rem;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        }
        .pricing-card .card-header {
            border-bottom: 1px solid #dee2e6;
            background: none;
        }
        .pricing-card.recommended {
            border: 2px solid #673ab7;
            transform: scale(1.05);
        }
        @media (max-width: 991.98px) {
            .pricing-card.recommended {
                transform: scale(1);
            }
        }
        .pricing-card.recommended:hover {
            transform: scale(1.08) translateY(-10px);
        }
        @media (max-width: 991.98px) {
            .pricing-card.recommended:hover {
                transform: translateY(-10px);
            }
        }
        .recommended-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #673ab7;
            color: #fff;
            padding: 0.25rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 700;
        }
        .package-name {
            font-weight: 700;
            color: #343a40;
        }
        .package-price {
            color: #673ab7;
        }
        .pricing-card .card-body {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .pricing-card ul li {
            display: flex;
            align-items: flex-start;
        }
        .pricing-card ul li .bi {
            margin-right: 0.5rem;
            margin-top: 0.25rem;
        }
        .pricing-card ul li .bi-check-circle-fill {
            color: #20c997;
        }
        .pricing-card ul li.text-muted .bi-x-circle-fill {
            color: #adb5bd;
        }
        .btn-primary-custom {
            color: white;
            background-color: #673ab7;
            border-color: #673ab7;
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #5e35b1;
            border-color: #5e35b1;
        }
        .btn-outline-primary {
            border-color: #673ab7;
            color: #673ab7;
            font-weight: 700;
            padding: 0.75rem 1.5rem;
        }
        .btn-outline-primary:hover {
            background-color: #673ab7;
            color: #fff;
        }
        
        /* --- MEGRENDELÉSI SÁV --- */
        .process-icon-small {
            width: 50px;
            height: 50px;
            background-color: #fff;
            border: 2px solid #673ab7;
            color: #673ab7;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        #order-info-strip span {
            color: #495057;
            font-size: 0.9rem;
        }
        .custom-tooltip .tooltip-inner {
            background-color: #212529;
            color: #fff;
        }
        .custom-tooltip .tooltip-arrow::before {
            border-top-color: #212529;
        }


        /* --- AI KÉRDÉS --- */
        #ai-faq-section {
            padding: 5rem 0;
            background-color: #fff;
        }
        .ai-chat-title {
            font-weight: 700;
        }
        .ai-chat-window {
            background-color: #fff;
            border: 1px solid #dee2e6;
            border-radius: 1rem;
            height: 400px;
            overflow-y: auto;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .chat-message {
            display: flex;
            max-width: 80%;
        }
        .message-bubble {
            padding: 0.75rem 1rem;
            border-radius: 1rem;
            line-height: 1.5;
        }
        .user-message {
            align-self: flex-end;
        }
        .user-message .message-bubble {
            background-color: #007bff;
            color: white;
            border-top-right-radius: 0.25rem;
        }
        .ai-message {
            align-self: flex-start;
        }
        .ai-message .message-bubble {
            background-color: #e9ecef;
            color: #212529;
            border-top-left-radius: 0.25rem;
        }
        .typing-indicator .message-bubble {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .typing-indicator span {
            width: 8px;
            height: 8px;
            background-color: #adb5bd;
            border-radius: 50%;
            animation: typing 1s infinite;
        }
        .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
        .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
        @keyframes typing {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        .ai-mascot-image {
            max-height: 500px;
            width: auto;
            object-fit: contain;
        }

        /* --- LÁBLÉC --- */
        #footer-section {
            background-color: #343a40;
            color: #adb5bd;
        }
        #footer-section .footer-title {
            color: #fff;
            font-weight: 700;
        }
        #footer-section .footer-link {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        #footer-section .footer-link:hover {
            color: #fff;
        }
        #footer-section .social-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
        }
        .footer-bottom {
            background-color: #212529;
        }

        /* --- RESZPONZIVITÁS --- */
        @media (min-width: 992px) {
            .floating-logos {
                display: block;
            }
        }
        
        @media (max-width: 767.98px) {
            .character-chat-container {
                flex-direction: column;
                justify-content: center;
                padding-top: 0;
                height: auto;
                min-height: calc(100vh - 70px);
            }
            
            .character-wrapper {
                flex-basis: auto;
                width: 100%;
                max-width: none;
                order: 2;
                margin-top: 1.5rem;
                display: block;
                text-align: center;
            }

            .character-image img { width: 70%; }

            .speech-bubble-area {
                order: 1;
                width: 90%;
                margin: 2rem auto 1rem;
                justify-content: center;
            }

            .speech-bubble { width: 100%; padding: 1.5rem; }
            .speech-bubble h1, .speech-bubble p { font-size: 5vw; }

            .bubble-tail {
                top: auto;
                bottom: -40px;
                left: 50%;
                transform: translateX(-50%) rotate(0deg);
            }
        }

        /* --- TÉMAKÖRÖK --- */
        #topics-overview-section {
            padding: 5rem 0;
            background-color: #ffffff;
        }
        #topics-overview-section .topic-item {
            transition: transform 0.3s ease;
            cursor: default;
        }
        #topics-overview-section .topic-item:hover {
            transform: scale(1.05);
        }
        #topics-overview-section .topic-icon {
            color: #673ab7;
            background-color: #f3e5f5;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        @media (max-width: 767.98px) {
             #topics-overview-section .topic-item {
                margin-bottom: 1.5rem !important;
             }
        }
        
        /* === KUKKANTS BELE SZEKCIÓ === */
        .kukkants-bele-szekcio {
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
            text-align: center;
        }

        .kukkants-bele-szekcio h2 {
            font-size: 2.5em;
            color: #1a2b48;
            margin-bottom: 10px;
        }

        .kukkants-bele-szekcio p {
            font-size: 1.1em;
            color: #555;
            margin-bottom: 40px;
        }

        .temakor-slider-wrapper {
            position: relative;
        }

        .temakor-racs-container {
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0 1rem;
        }
        .temakor-racs-container::-webkit-scrollbar {
            display: none;
        }
        
        .temakor-racs {
            display: flex;
            gap: 25px;
            padding-bottom: 1rem;
            width: fit-content;
        }

        .temakor-kartya {
            flex-shrink: 0;
            width: 65vw;
            max-width: 350px;
            scroll-snap-align: start;
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .temakor-kartya:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .temakor-kartya h3 {
            font-size: 1.4em;
            color: #1a2b48;
            margin-top: 0;
            margin-bottom: 20px;
            min-height: 44px;
        }

        .temakor-kartya .gombok {
            display: flex;
            flex-direction: row;
            gap: 10px;
            margin-top: auto;
        }

        .video-gomb {
            padding: 12px 10px;
            font-size: 0.9em;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color: 0.3s ease, transform 0.2s ease;
            width: 100%;
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            min-height: 90px;
        }
        
        .video-gomb i {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .video-gomb:active {
            transform: scale(0.98);
        }

        .video-gomb.magyarazo {
            background-color: #007bff;
            color: white;
        }
        .video-gomb.magyarazo:hover {
            background-color: #0056b3;
        }

        .video-gomb.feladat {
            background-color: #e9ecef;
            color: #1a2b48;
            border: 1px solid #d6dbe0;
        }
        .video-gomb.feladat:hover {
            background-color: #d6dbe0;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background-color: #fff;
            color: #1a2b48;
            border: 1px solid #d6dbe0;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.2s ease;
            display: none;
        }
        .slider-btn:hover {
            background-color: #f8f9fa;
            transform: translateY(-50%) scale(1.1);
        }
        .slider-btn.prev-btn {
            left: -15px;
        }
        .slider-btn.next-btn {
            right: -15px;
        }
        
        /* --- SLIDER LABELS BASE STYLES --- */
:root {
    /* Ezzel a változóval könnyen állítható a csúszka gombjának mérete */
    --thumb-size: 24px;
}

.price-slider-wrapper {
    position: relative;
    /* Behúzás a gomb sugarával, hogy a jelölők a pálya széleihez igazodjanak */
    padding: 0 calc(var(--thumb-size) / 2);
    margin-top: 1.5rem;
    padding-bottom: 70px; /* Alapértelmezett hely a dátumoknak */
}

#price-slider {
    width: 100%;
    margin: 0;
    padding: 0;
}

.slider-labels {
    position: relative;
    width: 100%;
    height: 60px;
    margin-top: 5px;
}

.slider-labels .label {
    position: absolute;
    top: 0;
    /* Alapértelmezett középre igazítás a középső jelölőknek */
    transform: translateX(-50%);
    text-align: center;
}

/* A kis függőleges vonal a jelölőhöz */
.slider-labels .label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background-color: #adb5bd;
}

.slider-labels .label p {
    padding-top: 15px;
    font-size: 12px;
    color: #6c757d;
    font-weight: bold;
    white-space: nowrap;
}


/* --- JAVÍTÁS A SZÉLSŐ ELEMEKRE (DESKTOP) --- */

/* Az első jelölőt a bal szélhez igazítjuk */
.slider-labels .label:first-child {
    transform: translateX(0);
    text-align: left;
}
.slider-labels .label:first-child::before {
    left: 0;
    transform: translateX(0);
}

/* Az utolsó jelölőt a jobb szélhez igazítjuk */
.slider-labels .label:last-child {
    transform: translateX(-100%);
    text-align: right;
}
.slider-labels .label:last-child::before {
    right: 0;
    left: auto;
    transform: translateX(0);
}


/* --- MOBIL NÉZET: DÁTUMOK FORGATÁSA --- */
@media (max-width: 767px) {
    .price-slider-container{
       padding-bottom: 57px!important; 
    }
    .price-slider-wrapper {
        padding-bottom: 120px; /* Mobilon több hely kell a forgatott szövegnek */
    }
  .slider-labels .label::before {
    top: -13px;       /* a jelölő lassan a slider tetejéhez közelebb */
  }


  .slider-labels .label p {
    position: absolute;
    top: 35px;   
    left: -9px;         
    transform-origin: center center;
    transform: translateX(-50%) rotate(-90deg);
    text-align: center;
  }
}
.vip-card-display {
        border: 2px solid #673ab7;
        box-shadow: 0 0 20px rgba(103, 58, 183, 0.25);
        padding: 1rem;
        border-radius: 1rem;
        background-color: #fff;
        text-align: center;
        margin-bottom: 2.5rem; /* Nagyobb tér a csúszka felett */
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .vip-card-display .package-title {
        font-weight: bold;
        font-size: 1.2rem;
        color: #673ab7;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .vip-card-display .package-price {
        font-size: 2.2rem;
        font-weight: 900;
        color: #e91e63; /* Élénkebb szín az árnak */
    }

    .price-slider-wrapper {
        padding: 0 10px; /* Igazítás a csúszka gombjához */
    }

    .slider-labels {
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        font-weight: 500;
        color: #6c757d;
        margin-top: 0.75rem;
    }

   .package-card-row {
        margin-bottom: 2rem;
    }
    .price-card-select {
        border: 2px solid #e9ecef;
        padding: 0.75rem 1.25rem;
        border-radius: 50px; /* Teljesen lekerekített */
        font-weight: bold;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        background-color: #fff;
    }
    .price-card-select.active {
        border-color: #673ab7;
        background-color: #673ab7;
        color: #fff;
        box-shadow: 0 4px 15px rgba(103, 58, 183, 0.3);
    }
    .price-card-select span {
        font-weight: normal;
        margin-left: 0.5rem;
    }
    
    /* === A MOBILNÉZET JAVÍTÁSA === */
    @media (max-width: 576px) {
        .slider-labels {
            justify-content: space-between;
        }

        /* A felesleges címkék elrejtése a zsúfoltság elkerülése érdekében */
        .slider-labels span:nth-child(2),
        .slider-labels span:nth-child(3),
        .slider-labels span:nth-child(5) {
            display: none;
        }

        /* A megmaradó címkék finomhangolása */
        .slider-labels span {
            font-size: 0.7rem; /* Kisebb betűméret */
            white-space: nowrap; /* Ne törjön sorba a szöveg */
        }
    }
        @media (min-width: 768px) {
            .temakor-kartya {
                width: calc((100% - 50px) / 3);
            }
            .temakor-racs-container {
                padding: 0 40px;
            }
             .slider-btn {
                display: block;
            }
        }


        /* === VIDEÓ MODAL === */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
            box-sizing: border-box;
        }

        .modal-content {
            position: relative;
            background-color: #000;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
            width: 100%;
            max-width: 900px;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .close-button {
            position: absolute;
            top: -35px;
            right: -15px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .close-button:hover {
            color: #ccc;
        }

        /* === ÁRCSÚSZKA SZEKCIÓ === */
        .price-slider-wrapper {
            position: relative;
            padding-top: 30px; /* Space for the tooltip */
        }
        #slider-tooltip {
            position: absolute;
            top: 0;
            background-color: #343a40;
            color: #fff;
            padding: 5px 15px;
            border-radius: 5px;
            transform: translateX(-50%);
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.2s ease-in-out;
            pointer-events: none;
            font-weight: bold;
        }
        #slider-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: #343a40;
        }
        #price-slider:active ~ #slider-tooltip,
        #price-slider:focus ~ #slider-tooltip {
            opacity: 1;
        }
        .price-card {
            border: 2px solid #dee2e6;
            border-radius: 0.75rem;
            padding: 1rem;
            text-align: center;
            cursor: default;
            transition: all 0.3s ease;
            flex: 1;
            max-width: 200px;
            position: relative;
        }
        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .price-card.active {
            border-color: #673ab7;
            background-color: #f3e5f5;
            border-width: 3px;
        }
        .price-card .package-title {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .price-card .package-price {
            font-size: 1.5rem;
            font-weight: 900;
            color: #dc3545;
        }
        .price-card.active .package-price {
            color: #673ab7;
        }
        .price-card .card-check {
            position: absolute;
            top: 8px;
            right: 8px;
            font-size: 1.5rem;
            color: #673ab7;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .price-card.active .card-check {
            opacity: 1;
        }

        .tile-menu-container {
            padding: 1rem 0;
        }

        .menu-tile {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            text-decoration: none;
            color: #495057;
            transition: all 0.3s ease;
            height: 100%;
        }

        .menu-tile:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
            color: #5e35b1;
        }

        .menu-tile .tile-icon {
            font-size: 3.5rem;
            color: #673ab7;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }
        
        .menu-tile:hover .tile-icon {
            color: #5e35b1;
        }

        .menu-tile .tile-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #343a40;
        }

        .knowledge-base-header {
            background-color: #e9eff5;
            padding: 4rem 0;
            text-align: center;
        }

        .knowledge-base-header h1 {
            font-weight: 900;
            color: #343a40;
        }

        .sidebar {
            background-color: #ffffff;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 90px; /* A fix menüsáv magassága + egy kis térköz */
        }

        .sidebar .nav-link {
            color: #495057;
            font-weight: 500;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .sidebar .nav-link:hover {
            background-color: #f3e5f5;
            color: #5e35b1;
        }

        .sidebar .nav-link.active {
            background-color: #673ab7;
            color: #ffffff;
            font-weight: 700;
        }
        
        .sidebar h5 {
            font-weight: 700;
            color: #343a40;
            margin-bottom: 1rem;
        }

                .breadcrumb{margin-bottom:0}.breadcrumb-item a{text-decoration:none;color:#673ab7;font-weight:500}.breadcrumb-item.active{color:#495057}.task-list-section h2{font-weight:700;color:#5e35b1;margin-bottom:2rem;padding-bottom:1rem;border-bottom:2px solid #e0e0e0}.task-card{background-color:#fff;border-radius:1rem;box-shadow:0 8px 25px rgba(0,0,0,.08);transition:all .3s ease;display:flex;flex-direction:column;height:100%}.task-card:hover{transform:translateY(-5px);box-shadow:0 12px 35px rgba(0,0,0,.12)}.task-card-img{border-top-left-radius:1rem;border-top-right-radius:1rem;width:100%;object-fit:cover}

         .task-card-body{
            padding:1.5rem;
            flex-grow: 1; /* Ezzel a kártya törzse kitölti a rendelkezésre álló helyet */
        }
        .task-card-title{
            font-weight:700;
            color:#343a40;
            margin-bottom:.75rem
        }
        .task-card-text{
            color:#495057;
            line-height:1.7;
            /* A flex-grow: 1; innen el lett távolítva */
        }
        /* --- MÓDOSÍTÁS VÉGE --- */

        .btn-task{background-color:#673ab7;color:#fff;font-weight:500;padding:.5rem 1.5rem;border-radius:50rem;transition:all .3s ease}.btn-task:hover{background-color:#5e35b1;transform:scale(1.05)}#footer-section{background-color:#343a40;color:#adb5bd}#footer-section .footer-title{color:#fff;font-weight:700}#footer-section .footer-link{color:#adb5bd;text-decoration:none;transition:color .3s ease}#footer-section .footer-link:hover{color:#fff}#footer-section .social-icon{font-size:1.5rem;margin-right:1rem}.footer-bottom{background-color:#212529}
 