.w3l-banner {
    background: linear-gradient(180deg, #e8eaff 0%, #f5f6ff 50%, #ffffff 100%);
    min-height: 100vh;
    box-sizing: border-box;
    padding: 40px 0 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-info-grid {
    text-align: left;
    color: #1e293b;
}

#utmutato {
    scroll-margin-top: calc(var(--site-header-height, 90px) + 20px);
}

.banner-info-grid h3 {
    font-family: 'Outfit', 'Kumbh Sans', sans-serif;
    font-size: clamp(2.55rem, 6.8vw, 4.25rem);
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 2rem 0;
    line-height: 0.9;
    letter-spacing: -3px;
}

/* Hero videó thumbnail */
.hero-video-container {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 420px;
    transition: all 0.3s ease;
}

.hero-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.hero-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-video-container:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-solid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-video-container:hover .video-play-button {
    transform: scale(1.1);
    background: #4f46e5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.hero-video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-video-placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.hero-video-placeholder-content p {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.7;
    margin: 0;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-solid);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.hero-cta-btn:hover {
    background: #4f46e5;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

.hero-cta-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateY(3px);
}

.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1e293b;
    padding: 15px 35px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1e293b;
    transition: all 0.3s ease;
}

.hero-secondary-btn:hover {
    background: #1e293b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.2);
}

.hero-buttons-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 75%;
}

.demo {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.demo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #64748b;
    font-size: 0.85rem;
    text-transform: capitalize;
}

.demo a span {
    width: 2px;
    height: 30px;
    background: var(--primary-solid);
    display: block;
    margin-bottom: 8px;
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Videó kártya szekció */
.video-card-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.video-card {
    background: var(--primary-gradient);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
}

.video-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-card-title {
    font-family: 'Outfit', 'Kumbh Sans', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.video-card-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    background: #000;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.video-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.video-placeholder-text {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.7;
}

.w3l-blog-cards {
    background: #f8f9fa;
    padding: 60px 0 80px 0;
    scroll-margin-top: 80px;
}

.section-title-left {
    font-size: 2rem;
    color: #32325d;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.section-title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-solid);
}

/* Hogyan működik szekció - VIDEÓ KÁRTYA STÍLUS */
.how-it-works-section {
    background: #f8f9fa;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.how-it-works-card {
    background: linear-gradient(135deg, var(--primary-color-start) 0%, var(--primary-color-end) 50%, #f093fb 100%);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.how-it-works-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
}

.how-it-works-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 8s linear infinite;
}

.how-it-works-title {
    font-family: 'Outfit', 'Kumbh Sans', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.how-it-works-text {
    position: relative;
    z-index: 1;
}

.how-it-works-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    text-align: left;
}

.how-it-works-text ul {
    text-align: left;
    margin: 0 0 20px 0;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.how-it-works-text li {
    text-align: left;
    margin-bottom: 12px;
    line-height: 1.6;
}

.how-it-works-text p:last-child {
    margin-bottom: 0;
}

.how-it-works-text strong {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Visitor info szekció - világos háttér, sötét szöveg */
.visitor-info-section {
    background: #ffffff;
}

.visitor-info-title {
    color: #1e293b;
    text-shadow: none;
}

.visitor-info-text p {
    color: #475569;
}

.visitor-info-text ul {
    color: #475569;
}

.visitor-info-text strong {
    color: var(--primary-solid);
    text-shadow: none;
}

.visitor-info-link {
    color: var(--primary-solid);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-solid);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.visitor-info-link:hover {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
    background: rgba(99, 102, 241, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Azonnali szakmai segítség kártya */
.expert-help-section {
    padding: 40px 0 60px 0;
    background: transparent;
}

.expert-help-card {
    background: var(--primary-gradient);
    text-align: center;
}

.expert-help-card::before {
    display: none;
}

.expert-help-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.expert-help-text p {
    font-size: 1.15rem;
    text-align: center;
}

.expert-help-phone {
    font-size: 1.3rem !important;
    margin-top: 1.5rem;
}

.expert-help-phone strong {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

/* Szűrő és kereső konténer */
.filter-search-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.filter-item {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-weight: 600;
    color: #32325d;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-label i {
    color: var(--primary-solid);
}

.filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Kumbh Sans', sans-serif;
    color: #32325d;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-solid);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-search-input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Kumbh Sans', sans-serif;
    color: #32325d;
    transition: all 0.3s ease;
}

.filter-search-input:focus {
    outline: none;
    border-color: var(--primary-solid);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-submit-btn {
    position: absolute;
    right: 5px;
    background: var(--primary-solid);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

/* Reszponzív szűrő */
@media (max-width: 768px) {
    .filter-search-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Szabadszavas kereső */
.search-bar-section {
    position: relative;
}

.search-bar-section .search {
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 25px;
    overflow: hidden;
}

.search__input-section {
    background: #fff;
    border: none;
    color: #32325d;
    padding: 0.7rem 1.2rem;
    width: 300px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.search__input-section:focus {
    outline: none;
    background: #f8f9fa;
}

.search__input-section::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.search__btn {
    background: var(--primary-solid);
    border: none;
    color: #fff;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search__btn:hover {
    background: #4f46e5;
}

.search__btn i {
    font-size: 0.95rem;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.blog-image {
    width: 300px;
    min-width: 300px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.blog-image img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-category {
    display: inline-block;
    background: transparent;
    color: #6c757d;
    padding: 0;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 10px;
    align-self: flex-start;
}

.blog-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-solid) 0%, #a855f7 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #32325d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 15px 0 0 0;
    border-top: 1px solid #e9ecef;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-author, .blog-date, .blog-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-actions {
    display: flex;
    gap: 15px;
    margin-left: auto;
}

.blog-action-btn {
    background: var(--primary-solid);
    border: none;
    color: #ffffff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.blog-action-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.blog-action-btn i {
    font-size: 0.9rem;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-solid);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-left: auto;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-read-more:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination-custom {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.pagination-custom .page-item {
    display: inline-block;
}

.pagination-custom .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #32325d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-custom .page-link:hover {
    background: var(--primary-solid);
    color: #fff;
    border-color: var(--primary-solid);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.pagination-custom .page-item.active .page-link {
    background: var(--primary-solid);
    color: #fff;
    border-color: var(--primary-solid);
}

.pagination-custom .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.partners-slider {
    background: #fff;
    padding: 50px 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.partners-track {
    display: flex;
    animation: scrollPartners 30s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-slide {
    flex-shrink: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-slide img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-slide img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
    max-width: 280px;
    animation: slideIn 0.6s ease;
    display: none;
}

@keyframes slideIn {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.close-ad {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #adb5bd;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 24px;
    height: 24px;
}

.close-ad:hover {
    color: #495057;
}

.floating-ad-title {
    font-size: 0.9rem;
    color: #32325d;
    font-weight: 600;
    margin-bottom: 12px;
}

.floating-partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.floating-partner-logo {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 8px;
    text-align: center;
    font-size: 0.7rem;
    color: #6c757d;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-nav-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.scroll-nav-buttons.show {
    opacity: 1;
    visibility: visible;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-solid);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.scroll-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.scroll-btn.scroll-top {
    background: #6c757d;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.scroll-btn.scroll-top:hover {
    background: #5a6268;
    box-shadow: 0 6px 16px rgba(108, 117, 125, 0.4);
}

.scroll-btn:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .banner-info-grid h3 {
        font-size: 2.38rem;
    }
    
    .hero-cta-btn {
        font-size: 1rem;
        padding: 14px 28px;
    }
    
    .hero-lead-text {
        max-width: 100%;
    }
    
    .hero-video-container {
        height: 350px;
    }
    
    .video-play-button {
        width: 70px;
        height: 70px;
    }
    
    .video-play-button i {
        font-size: 1.75rem;
    }
    
    .video-card {
        padding: 30px;
    }
    
    .video-card-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .video-card-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .how-it-works-section {
        padding: 40px 0;
    }
    
    .how-it-works-card {
        padding: 40px 30px;
    }
    
    .how-it-works-title {
        font-size: 1.8rem;
    }
    
    .expert-help-title {
        font-size: 1.9rem;
    }
    
    .expert-help-text p {
        font-size: 1.05rem;
    }
    
    .expert-help-phone {
        font-size: 1.2rem !important;
    }
    
    .expert-help-phone strong {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {
    .w3l-banner {
        min-height: auto;
        padding: 30px 0 60px 0;
    }
    
    .banner-info-grid h3 {
        font-size: 1.87rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .banner-info-grid {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        font-size: 0.95rem;
        padding: 14px 24px;
    }
    
    .hero-lead-text {
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.05rem;
    }
    
    .hero-buttons-container {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-video-container {
        height: 280px;
        margin-top: 2rem;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 1.5rem;
    }
    
    .video-card {
        padding: 25px;
    }
    
    .video-card-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .video-card-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .floating-ad {
        max-width: 240px;
        bottom: 15px;
        right: 15px;
    }

    .section-title-left {
        font-size: 1.5rem;
    }
    
    .how-it-works-section {
        padding: 30px 0;
    }
    
    .how-it-works-card {
        padding: 30px 25px;
    }
    
    .how-it-works-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .how-it-works-text p,
    .how-it-works-text ul {
        font-size: 1rem;
    }
    
    .how-it-works-text p {
        font-size: 1rem;
    }
    
    .expert-help-title {
        font-size: 1.6rem;
    }
    
    .expert-help-text p {
        font-size: 1rem;
    }
    
    .expert-help-phone {
        font-size: 1.1rem !important;
    }
    
    .expert-help-phone strong {
        font-size: 1.25rem;
    }

    .search-bar-section {
        width: 100%;
        margin-top: 15px;
    }

    .search__input-section {
        width: 100%;
    }

    .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .pagination-custom {
        flex-wrap: wrap;
        justify-content: center;
    }

    .partners-track {
        animation: scrollPartners 20s linear infinite;
    }

    .blog-card {
        flex-direction: column;
    }

    .blog-image {
        width: 100%;
        height: 200px;
        min-width: auto;
    }

    .blog-image img {
        height: 100%;
    }

    .scroll-nav-buttons {
        right: 15px;
        bottom: 15px;
    }

    .scroll-btn {
        width: 48px;
        height: 48px;
    }
    
    .blog-action-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-height: 44px;
    }
}

/* Extra kicsi telefonok (360px és kisebb) */
@media (max-width: 480px) {
    .w3l-banner {
        padding: 20px 0 50px 0;
    }
    
    .banner-info-grid h3 {
        font-size: 1.53rem;
        letter-spacing: -2px;
        line-height: 1.1;
        margin-bottom: 1.25rem;
    }
    
    .hero-cta-btn, .hero-secondary-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-lead-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-video-container {
        height: 220px;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button i {
        font-size: 1.25rem;
    }
    
    .video-card {
        padding: 20px;
    }
    
    .video-card-title {
        font-size: 1.3rem;
    }
    
    .video-card-description {
        font-size: 0.9rem;
    }
    
    .section-title-left {
        font-size: 1.3rem;
    }
    
    .how-it-works-section {
        padding: 25px 0;
    }
    
    .how-it-works-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .how-it-works-title {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .how-it-works-text p,
    .how-it-works-text ul {
        font-size: 0.95rem;
    }
    
    .how-it-works-text {
        padding: 25px 20px;
    }
    
    .how-it-works-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .expert-help-section {
        padding: 30px 0 50px 0;
    }
    
    .expert-help-title {
        font-size: 1.4rem;
    }
    
    .expert-help-text p {
        font-size: 0.95rem;
    }
    
    .expert-help-phone {
        font-size: 1rem !important;
    }
    
    .expert-help-phone strong {
        font-size: 1.15rem;
    }
    
    .blog-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .blog-meta span {
        font-size: 0.85rem;
    }
    
    .btn-read-more {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .partner-slide img {
        height: 30px;
        max-width: 100px;
    }
    
    .pagination-custom .page-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}
