/* CSS Reset és Alapvető Stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header és Navigáció */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 5.2rem;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.1);
}

.nav-logo h1 {
    color: #16BF92;
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.nav-logo:hover h1 {
    color: #0f7056;
    text-shadow: 0 2px 4px rgba(22, 191, 146, 0.2);
}

.nav-logo:hover h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #16BF92, #0f7056);
    transform: scaleX(0);
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    to {
        transform: scaleX(1);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-link:hover {
    color: #16BF92;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #16BF92;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Szekció */
.hero {
    background: linear-gradient(135deg, #16BF92 0%, #0f7056 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.5rem;
    opacity: 0.95;
    /* text-align: justify; */
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Modern CTA gombok a hero-ban */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: white;
    color: #16BF92;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
    color: #0f7056;
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-btn-secondary:hover {
    background: white;
    color: #16BF92;
    transform: translateY(-2px);
}

.hero-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(3px);
}

/* Modern loading állapot */
.hero-btn.loading {
    position: relative;
    color: transparent;
}

.hero-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modern hover effektek */
.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-card:hover::before {
    left: 100%;
}

/* Hero kártyák mobilnézetben */
.hero-cards {
    display: none;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: left;
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.hero-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.hero-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    text-align: left;
}

/* Mobilnézeti módosítások */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    /* Mobilnézetben kártya-alapú layout */
    .hero-cards {
        display: grid;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1.2rem 2rem;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    .hero-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-card-icon i {
        font-size: 1.2rem;
    }
    
    .hero-card h3 {
        font-size: 1.2rem;
    }
    
    .hero-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-cards {
        gap: 1rem;
    }
    
    .hero-card {
        padding: 1.2rem;
        /* Touch-friendly hover effects */
        -webkit-tap-highlight-color: transparent;
    }
    
    .hero-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .hero-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .hero-card-icon i {
        font-size: 1.1rem;
    }
    
    .hero-card h3 {
        font-size: 1.1rem;
    }
    
    .hero-card p {
        font-size: 0.9rem;
    }
    
    .hero-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        /* Touch-friendly button */
        -webkit-tap-highlight-color: transparent;
        min-height: 48px; /* iOS touch target minimum */
    }
    
    .hero-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Mobilnézeti további finomhangolások */
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-cta {
        margin-top: 1.5rem;
    }
    
    /* Mobilnézeti scroll finomhangolás */
    .hero {
        -webkit-overflow-scrolling: touch;
    }
}

/* Csempék */
.tiles-section {
    padding: 4rem 0;
    background: #fff;
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tile {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.tile-image {
    width: 100%;
    height: 320px;
    flex-shrink: 0;
}

.tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.tile:hover .tile-overlay {
    transform: translateY(0);
}

.tile-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tile-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.tile-overlay i {
    font-size: 1.5rem;
}

/* Caption under tile images */
.tile-caption {
    background: #fff;
    padding: 1rem;
    text-align: center;
    color: #333;
    flex-shrink: 0;
}

/* Videó Szekció */
.video-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Video section specific styling - inherits from global h2 */

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.video-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.video-wrapper h3 {
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.video-wrapper iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

.facebook-video {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f2f6;
    border-radius: 10px;
}

.fb-video-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #1877f2;
    font-weight: 600;
    transition: color 0.3s ease;
}

.fb-video-link:hover {
    color: #166fe5;
}

.fb-video-link i {
    font-size: 3rem;
}

/* Modern Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #16BF92, transparent);
}

.footer-content {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* gap: 3rem; */
    margin-bottom: 3rem;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: flex-start;
    justify-content: space-between;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    /* box-shadow: 0 4px 15px rgba(22, 191, 146, 0.3); */
    /* transition: transform 0.3s ease; */
}

.footer-logo:hover img {
    transform: scale(1.1);
}

.footer-logo h3 {
    color: #16BF92;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.footer-tagline {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Modern Social Media Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #166fe5);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-link.facebook:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.social-link.instagram:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000, #25f4ee, #fe2c55);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.social-link.tiktok:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}
.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
/* Footer Contact Section */
.footer-contact h4,
.footer-info h4,
.footer-cta h4 {
    color: #16BF92;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: left;
}

.footer-cta h4 {
    margin-bottom: 0;
}

.footer-contact h4::after,
.footer-info h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #16BF92, #0f7056);
    border-radius: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: #16BF92;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #16BF92, #0f7056);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(22, 191, 146, 0.3);
}

.contact-icon i {
    color: white;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.contact-details p {
    margin: 0;
    /* color: #e0e0e0; */
    font-size: 0.95rem;
}

.contact-details a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #16BF92;
    text-decoration: none;
}

/* Footer Info Section */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #16BF92;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #16BF92;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

/* Footer CTA Section */
.footer-cta p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #16BF92, #0f7056);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 191, 146, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 191, 146, 0.5);
    color: white;
    text-decoration: none;
}

.footer-btn:hover::before {
    left: 100%;
}

.footer-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.footer-btn:hover i {
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #16BF92;
    text-decoration: none;
    /* font-size: 0.9rem; */
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #16BF92;
    text-decoration: underline;
}

.developer-link {
    color: #16BF92;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 800 !important;
}

.developer-link:hover {
    color: #0f7056;
    text-shadow: 0 2px 4px rgba(22, 191, 146, 0.2);
    transform: translateY(-1px);
}

.separator {
    color: #555;
    font-size: 0.8rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .contact-item {
        padding: 0.8rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .footer-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Global H2 Styling - All h2 headings like "Elérhetőségeink" */
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #16BF92, #0f7056);
    border-radius: 2px;
}

/* Belső Oldalak Stílusai */
.page-header {
    background: linear-gradient(135deg, #16BF92 0%, #0f8d6b 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.page-content {
    padding: 4rem 0;
    background: white;
}

.content-section {
    margin-bottom: 3rem;
}

/* Content section specific styling - inherits from global h2 */

.content-section p {
    margin-bottom: 1rem;
    color: #595959;
    line-height: 1.8;
    text-align: center;
}

/* Pedagógus Kártyák */
.pedagogue-section {
    margin: 0;
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Pedagogue section specific styling - inherits from global h2 */

.pedagogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pedagogue-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pedagogue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pedagogue-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 4px solid #16BF92;
    transition: transform 0.3s ease;
}

.pedagogue-card:hover .pedagogue-photo {
    transform: scale(1.05);
}

.pedagogue-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pedagogue-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.pedagogue-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pedagogue-description {
    text-align: left;
    margin-top: 1.5rem;
}

.pedagogue-description p {
    margin-bottom: 1rem;
    color: #555;
    font-style: normal;
    line-height: 1.7;
}

.pedagogue-description h4 {
    color: #16BF92;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #16BF92;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.pedagogue-description ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1.5rem 0;
}

.pedagogue-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.pedagogue-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16BF92;
    font-weight: bold;
    font-size: 1.1rem;
}

.pedagogue-description strong {
    color: #333;
    font-weight: 600;
}

/* Metodológia Grid - Rólunk oldal */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.method-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-card i {
    font-size: 3rem;
    color: #16BF92;
    margin-bottom: 1rem;
}

.method-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.method-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Értékek Lista - Rólunk oldal */
.values-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #16BF92;
}

.value-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-item i {
    color: #16BF92;
}

.value-item p {
    color: #666;
    margin: 0;
}

/* Előnyök Grid - Rólunk oldal */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: #666;
    font-size: 0.9rem;
}

/* GYIK Stílusok */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    background: #16BF92;
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Galéria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Kapcsolat Oldal */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-info h3 {
    color: #16BF92;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact details structured layout */
.contact-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 95px;
    font-weight: 600;
    color: #16BF92;
    flex-shrink: 0;
    width: 110px;
}

.contact-label i {
    width: 16px;
    text-align: center;
}

.contact-value {
    flex: 1;
    color: #333;
}

.contact-value a {
    color: #16BF92;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #0f7056;
    text-decoration: underline;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    /* height: 300px; */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Admin Oldal */
.admin-panel {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.admin-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    /* margin-bottom: 0.5rem; */
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #16BF92;
}

.btn {
    background: #16BF92;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0f8d6b;
}

.btn-delete {
    background: #f44336;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-delete:hover {
    background: #d32f2f;
}

.admin-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.admin-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.admin-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Reszponzív Design */
@media (max-width: 1080px) {
    .nav-logo {
        gap: 0.5rem;
    }
    
    .nav-logo img {
        height: 4rem;
    }
    
    .nav-logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .tiles-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-label {
        min-width: auto;
        width: 100%;
    }

    .footer-content {
        display: flex;
        grid-template-columns: 1fr;
        text-align: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .pedagogue-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .methodology-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        gap: 0.4rem;
    }
    
    .nav-logo img {
        height: 4rem;
    }
    
    .nav-logo h1 {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .tiles-section,
    .video-section,
    .page-content {
        padding: 2rem 0;
    }

    .tile {
        height: 330px;
    }
}

/* Animációk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Hero kártyák animációi */
.hero-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.hero-card:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-card:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* CTA gombok animációi */
.hero-btn {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.hero-btn-primary {
    animation-delay: 0.4s;
}

.hero-btn-secondary {
    animation-delay: 0.5s;
}

/* Olasz tanfolyam oldal stílusai */
.course-highlight {
    margin: 2rem 0;
}

.highlight-card {
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.highlight-icon i {
    font-size: 3rem;
    opacity: 0.8;
}

.highlight-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.highlight-info .date {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.highlight-info .time {
    opacity: 0.9;
}

.highlight-price {
    text-align: right;
    margin-left: auto;
}

.highlight-price .price {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.highlight-price .unit {
    opacity: 0.8;
    font-size: 0.9rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #16BF92;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.course-features {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.level-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.level-card:hover {
    transform: translateY(-5px);
}

.level-card.featured {
    border: 2px solid #16BF92;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #16BF92;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.level-header {
    background: #f8f9fa;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.level-header h3 {
    color: #333;
    font-weight: 700;
}

.level-duration {
    background: #16BF92;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.level-content {
    padding: 1.5rem;
}

.level-content ul {
    list-style: none;
    margin: 1rem 0;
}

.level-content li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.level-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16BF92;
    font-weight: bold;
}

.level-price {
    background: #f8f9fa;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #16BF92;
    margin-top: 1rem;
    border-radius: 8px;
}

.current-courses {
    margin: 2rem 0;
}

.course-schedule h3 {
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.schedule-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.schedule-info p {
    margin-bottom: 0.25rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-price {
    text-align: right;
    flex-shrink: 0;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16BF92;
    display: block;
}

.price-detail {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
}

.trial-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.trial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.trial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.trial-icon i {
    color: white;
    font-size: 2rem;
}

.trial-content ul {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
}

.trial-content li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.trial-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16BF92;
    font-weight: bold;
}

.payment-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.payment-options {
    display: grid;
    gap: 1rem;
}

.payment-option {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #16BF92;
}

.payment-option h4 {
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-option i {
    color: #16BF92;
}

/* Workshop oldal stílusai */
.status-notice {
    margin: 2rem 0;
}

.notice-card {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
}

.notice-card i {
    font-size: 3rem;
    opacity: 0.8;
}

.workshop-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #16BF92;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.workshop-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.workshop-card.featured {
    border: 2px solid #16BF92;
}

.workshop-image {
    height: 200px;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-content {
    padding: 1.5rem;
}

.workshop-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #16BF92;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.workshop-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: #16BF92;
}

.workshop-includes ul {
    list-style: none;
    margin: 1rem 0;
}

.workshop-includes li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.workshop-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #16BF92;
    font-weight: bold;
}

.workshop-price {
    text-align: center;
    margin: 1rem 0;
}

.workshop-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16BF92;
}

.workshop-price .price-note {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-top: 0.25rem;
}

.btn-disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.planned-workshops {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.workshop-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.preview-icon i {
    color: white;
    font-size: 1.5rem;
}

.preview-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.notification-signup {
    margin: 2rem 0;
}

.signup-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.signup-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.signup-icon i {
    font-size: 2rem;
}

.signup-benefits {
    display: grid;
    gap: 0.5rem;
    margin: 1rem 0;
}

.signup-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.signup-benefits i {
    color: #16BF92;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* GYIK oldal stílusai */
.faq-container {
    margin: 2rem 0;
}

.contact-cta {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #16BF92;
    color: #16BF92;
}

.btn-outline:hover {
    background: #16BF92;
    color: white;
}

/* További oldalak stílusai */

/* Események oldal */
.video-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

.video-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 350px;
    width: 100%;
    text-align: center;
}

.facebook-video-container {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.facebook-video-container iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.fb-video-large {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.fb-video-preview {
    background: #f1f2f6;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
}

.fb-video-preview:hover {
    background: #e9ecef;
}

.fb-video-preview i {
    font-size: 3rem;
    color: #1877f2;
}

.fb-video-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.watch-btn {
    display: inline-block;
    background: #1877f2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: 600;
}

.event-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.monthly-events {
    margin: 2rem 0;
}

.month-section {
    margin-bottom: 3rem;
}

.month-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-timeline {
    position: relative;
    padding-left: 2rem;
}

.event-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #16BF92;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    background: #16BF92;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #16BF92;
}

.timeline-item.upcoming::before {
    background: #ff9800;
    box-shadow: 0 0 0 3px #ff9800;
}

.timeline-date {
    position: absolute;
    left: -8rem;
    top: 1rem;
    background: #16BF92;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
}

.timeline-item.upcoming .timeline-date {
    background: #ff9800;
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.upcoming-badge {
    background: #ff9800;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.social-share {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.share-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.share-btn.email {
    background: #333;
    color: white;
}

/* Dokumentumok oldal */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.document-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
}

.document-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.document-icon {
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    color: white;
    padding: 2rem;
    text-align: center;
}

.document-icon i {
    font-size: 3rem;
}

.document-info {
    padding: 1.5rem;
    flex-grow: 1;
}

.document-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.document-details {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.document-actions {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.document-actions .btn {
    flex: 1;
    text-align: center;
}

.info-boxes {
    margin: 2rem 0;
}

/* Info boxes specific styling - inherits from global h2 */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 1.2rem;
}

.info-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.deadlines-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deadlines-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.deadlines-list li:last-child {
    border-bottom: none;
}

.deadlines-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #16BF92;
    font-weight: bold;
    font-size: 1.2rem;
}

.deadlines-list strong {
    color: #333;
    font-weight: 600;
}

.deadline-link {
    color: #16BF92;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.deadline-link:hover {
    color: #0f7056;
    text-decoration: underline;
}

.methods-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.methods-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    /* padding-left: 1.5rem; */
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.methods-list li .method-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* width: 100%; */
}

.methods-list li .method-description {
    margin-left: 1.5rem;
    margin-top: 0.25rem;
}

/* Mobile layout */
@media (max-width: 768px) {
    .methods-list li {
        flex-direction: column;
    }
    
    .methods-list li .method-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    .methods-list li .method-description {
        margin-left: 1.5rem;
        margin-top: 0.25rem;
    }
}

.methods-list li:last-child {
    border-bottom: none;
}

.methods-list li i {
    color: #16BF92;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.methods-list strong {
    color: #333;
    font-weight: 600;
    min-width: 100px;
    display: inline-block;
}

.submission-info {
    margin: 2rem 0;
}

/* Submission info specific styling - inherits from global h2 */

.submission-info p {
    text-align: center;
    margin-bottom: 2rem;
    color: #595959;
    line-height: 1.8;
}

.submission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.submission-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
}

.submission-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.submission-icon i {
    color: white;
    font-size: 1.2rem;
}

.submission-content {
    flex: 1;
}

.submission-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.documents-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.documents-list li:last-child {
    border-bottom: none;
}

.documents-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16BF92;
    font-weight: bold;
    font-size: 1.1rem;
}

.submission-methods h3,
.requirements h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.method-list {
    display: grid;
    gap: 1rem;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-direction: column;
}

.method-item i {
    color: #16BF92;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.requirements ul {
    list-style: none;
    padding: 0;
}

.requirements li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16BF92;
    font-weight: bold;
}

.contact-help {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.help-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Kapcsolat oldal */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    align-content: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details a {
    color: #16BF92;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.opening-hours {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.opening-hours h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-list {
    display: grid;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.map-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-container {
    display: flex;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
    flex-direction: column;
    align-items: center;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    width: 100%;
}

/* Form rows removed - all fields now stack vertically */

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.info-timeline {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    color: white;
    font-size: 1rem;
}

.step-content h4 {
    color: #333;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.transport-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    width: 100%;
}

.transport-option {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.transport-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transport-icon i {
    color: white;
    font-size: 1.2rem;
}

.quick-contact {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.quick-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.quick-btn:hover {
    transform: translateY(-3px);
}

.quick-btn.phone {
    background: #16BF92;
    color: white;
}

.quick-btn.whatsapp {
    background: #25D366;
    color: white;
}

.quick-btn.email {
    background: #333;
    color: white;
}

.quick-btn i {
    font-size: 1.5rem;
}

/* Admin oldal */
.admin-tabs {
    margin: 2rem 0;
}

.tab-buttons {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
}

.tab-btn {
    background: #f8f9fa;
    color: #666;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.tab-btn:first-child {
    border-radius: 10px 0 0 10px;
}

.tab-btn:last-child {
    border-radius: 0 10px 10px 0;
}

.tab-btn.active {
    background: #16BF92;
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #e9ecef;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.admin-list {
    display: grid;
    gap: 1.5rem;
}

.admin-images-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.admin-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.video-item {
    /* display: flex; */
    gap: 1rem;
}

.image-item {
    display: flex;
    flex-direction: column;
}

.item-preview {
    position: relative;
}

.video-item .item-preview {
    width: 200px;
    height: 120px;
    flex-shrink: 0;
}

.image-item .item-preview {
    height: 200px;
}

.video-thumbnail,
.image-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.item-details {
    padding: 1rem;
    flex-grow: 1;
}

.item-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.item-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.admin-help {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.admin-help h2 {
    color: #333;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-section {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.help-section h3 {
    color: #16BF92;
    margin-bottom: 1rem;
    font-weight: 600;
}

.help-section ul {
    list-style: none;
    padding: 0;
}

.help-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.help-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #16BF92;
    font-weight: bold;
}

.no-content {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
}

.admin-message {
    background: white;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.admin-message.success {
    border-left: 4px solid #16BF92;
}

.admin-message.error {
    border-left: 4px solid #f44336;
}

.admin-message.info {
    border-left: 4px solid #2196F3;
}

.admin-message i {
    font-size: 1.2rem;
}

.admin-message.success i {
    color: #16BF92;
}

.admin-message.error i {
    color: #f44336;
}

.admin-message.info i {
    color: #2196F3;
}

.message-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.7;
}

.message-close:hover {
    opacity: 1;
}

.form-message {
    background: white;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-message.success {
    border-left: 4px solid #16BF92;
    background: #f1f8e9;
}

.form-message.error {
    border-left: 4px solid #f44336;
    background: #ffebee;
}

.field-error {
    color: #f44336;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #f44336;
}

.character-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.character-counter.over-limit {
    color: #f44336;
}

/* Admin Modal stílusok */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Drag & Drop stílusok */
.drop-zone {
    border: 2px dashed #16BF92;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.drop-zone:hover,
.drop-zone.dragover {
    background: #e8f5e8;
    border-color: #0f8d6b;
}

.drop-zone i {
    font-size: 3rem;
    color: #16BF92;
    margin-bottom: 1rem;
    display: block;
}

.drop-zone p {
    color: #666;
    margin: 0;
}

/* Bejelentkezési történet stílusok */
.meta-item.success {
    color: #16BF92;
}

.meta-item.error {
    color: #f44336;
}

/* Reszponzív kiegészítések */
@media (max-width: 768px) {
    .highlight-card {
        flex-direction: column;
        text-align: center;
    }

    .highlight-price {
        margin-left: 0;
        margin-top: 1rem;
    }

    .trial-info {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
    }

    .signup-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid,
    .planned-workshops {
        grid-template-columns: 1fr;
    }

    .video-gallery {
        align-items: center;
    }

    .video-item {
        max-width: 300px;
        padding: 1.5rem;
    }

    .facebook-video-container iframe {
        width: 250px;
        height: 355px;
        max-width: 100%;
    }

    .event-categories,
    .transport-info {
        grid-template-columns: 1fr;
    }

    .share-options {
        flex-direction: column;
        align-items: center;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .document-actions {
        flex-direction: column;
    }

    .submission-info {
        grid-template-columns: 1fr;
    }

    .help-contact {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quick-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn:first-child {
        border-radius: 10px 10px 0 0;
    }

    .tab-btn:last-child {
        border-radius: 0 0 10px 10px;
    }

    .video-item {
        flex-direction: column;
    }

    .video-item .item-preview {
        width: 100%;
        height: 200px;
    }

    .help-sections {
        grid-template-columns: 1fr;
    }

    .timeline-date {
        position: static;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .event-timeline {
        padding-left: 0;
    }

    .event-timeline::before {
        display: none;
    }

    .timeline-item::before {
        display: none;
    }
}

@media (max-width: 600px) {
  .tiles-grid {
    gap: 1.5rem;
  }
  .tile {
    margin: 0 0 1.5rem 0;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  }
  .tile-image {
    height: 200px;
    border-radius: 18px 18px 0 0;
  }
  .tile-caption {
    font-size: 1.1rem;
    padding: 0.8rem 0.5rem 1rem 0.5rem;
    border-radius: 0 0 18px 18px;
  }
  .tile-caption h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  .tile-caption p {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }
  .tile-caption i {
    font-size: 1.2rem;
  }
}

/* Scrollbar Stílusok */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #16BF92;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f8d6b;
}

/* Új stílusok az 5Napközi Rólunk oldalhoz */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #16BF92;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #16BF92, #0f8d6b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.highlight-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pedagogue-description h5 {
    color: #16BF92;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pedagogue-description ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1.5rem 0;
}

.pedagogue-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.pedagogue-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16BF92;
    font-weight: bold;
}

.testimonials {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.testimonial-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    flex-direction: column;
}

.testimonial-img {
    /* max-width: 300px; */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-img:hover {
    transform: scale(1.05);
}

.testimonials-note {
    color: #666;
    font-style: italic;
    margin: 0;
    font-size: 1rem;
}

/* Mobilra optimalizált stílusok */
@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pedagogue-grid {
        grid-template-columns: 1fr;
    }
    
    .pedagogue-card {
        padding: 1.5rem;
    }
    
    .pedagogue-card h3 {
        font-size: 1.3rem;
    }
    
    .pedagogue-card p {
        font-size: 1rem;
    }
    
    .pedagogue-description h4 {
        font-size: 1rem;
    }
    
    .testimonial-images {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .testimonial-img {
        max-width: 250px;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .highlight-box p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card i {
        font-size: 2.5rem;
    }
    
    .pedagogue-card {
        padding: 1.5rem;
    }
    
    .testimonial-img {
        max-width: 200px;
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Pricing section specific styling - inherits from global h2 */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.pricing-category {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pricing-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #16BF92;
}

.pricing-category h3 {
    color: #16BF92;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.pricing-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #16BF92;
    border-radius: 1px;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.pricing-item:hover {
    background: #e9ecef;
    border-left-color: #16BF92;
    transform: translateX(5px);
}

.pricing-item.featured {
    background: linear-gradient(135deg, #16BF92 0%, #0f7056 100%);
    color: white;
    border-left-color: #fff;
    position: relative;
    overflow: visible;
}

.pricing-item.featured::before {
    content: 'Népszerű';
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ba0000;
    color: #ffffff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    transform: rotate(15deg);
    z-index: 1000;
}

.pricing-item.featured:hover {
    transform: translateX(5px) scale(1.02);
}

.service-name {
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
}

.service-duration {
    color: #666;
    font-size: 0.9rem;
    margin: 0 1rem;
}

.pricing-item.featured .service-duration {
    color: rgba(255,255,255,0.8);
}

.service-description {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    margin: 0 1rem;
}

.pricing-item.featured .service-description {
    color: rgba(255,255,255,0.8);
}

.service-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #16BF92;
    text-align: right;
    min-width: 120px;
}

.pricing-item.featured .service-price {
    color: #fff;
}

.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

.pricing-cta a {
    height: 80px;
    width: 300px;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #16BF92 0%, #0f7056 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(22, 191, 146, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(22, 191, 146, 0.4);
    color: white;
    text-decoration: none;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Pricing Section */
@media (max-width: 768px) {
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-category {
        padding: 2rem;
    }
    
    .pricing-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .service-duration,
    .service-description {
        margin: 0;
    }
    
    .service-price {
        text-align: center;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-section h2 {
        font-size: 1.8rem;
    }
    
    .pricing-category {
        padding: 1.5rem;
    }
    
    .pricing-category h3 {
        font-size: 1.5rem;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .service-price {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
} 

.page-header p {
    font-size: 1.5rem;
    text-align: center;
}
@media (max-width: 550px) {
    .footer-cta p {
        text-align: center;
    }
}
@media (max-width: 950px) {
    .nav-link {
        font-size: 1rem;
    }
}

.opening-hours {
    display: none;
}

.transport-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}


.pedagogue-text p {
    text-align: center;
    margin-bottom: 2rem;
}