        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            transition: all 0.3s ease;
        }
        
        .container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* NYELVKEZELÉS */
        body.lang-hu .lang-en {
            display: none !important;
        }
        
        body.lang-en .lang-hu {
            display: none !important;
        }
     
        
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            z-index: 1000;
            overflow: hidden;
        }
        
        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }
        
        .dropdown-item {
            display: block;
            padding: 15px 20px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid #f1f1f1;
            transition: all 0.2s ease;
            position: relative;
        }
        
        .dropdown-item:last-child {
            border-bottom: none;
        }
        
        .dropdown-item:hover {
            background: linear-gradient(90deg, #3498db, #2ecc71);
            color: white;
            padding-left: 25px;
        }
        
        .dropdown-arrow {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
        }
        
        /* Page Hero */
        .page-hero {
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
            opacity: 0.1;
        }
        
        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .page-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        /* Page Content */
        .page-content {
            padding: 4rem 0;
        }
        
        .content-section {
            margin-bottom: 4rem;
        }
        
        .content-section h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #3498db;
            display: inline-block;
        }
        
        .content-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .feature-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid #3498db;
            transition: transform 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .feature-item i {
            font-size: 2rem;
            color: #3498db;
            margin-bottom: 1rem;
        }
        
        .feature-item h3 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        /* Comparison Table */
        .comparison-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin: 2rem 0;
        }
        
        .table-header {
            background: linear-gradient(135deg, #3498db, #2ecc71);
            color: white;
            padding: 1.5rem;
            text-align: center;
        }
        
        .table-header h3 {
            font-size: 1.5rem;
            margin: 0;
        }
        
        .table-content {
            padding: 2rem;
        }
        
        .comparison-item {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-item:last-child {
            border-bottom: none;
        }
        
        .item-title {
            font-weight: 600;
            color: #2c3e50;
            flex: 1;
        }
        
        .item-value {
            flex: 1;
            text-align: right;
            color: #555;
        }
        
        /* Benefits List */
        .benefits-list {
            list-style: none;
            margin: 2rem 0;
        }
        
        .benefits-list li {
            padding: 1rem 1rem 1rem 3rem;
            margin-bottom: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
            position: relative;
            border-left: 4px solid #2ecc71;
        }
        
        .benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 1rem;
            color: #2ecc71;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Call to Action */
        .cta-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 4rem 0;
            text-align: center;
            border-radius: 15px;
            margin: 4rem 0;
        }
        
        .cta-section h3 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
            color: #666;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn:after {
            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.7s ease;
        }
        
        .btn:hover:after {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
            color: white;
            padding: 4rem 0 1.5rem;
            border-top: 4px solid #3498db;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        
        .footer-column h3 {
            margin-bottom: 1.5rem;
            color: #3498db;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #3498db;
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: #3498db;
            transform: translateX(5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #95a5a6;
        }
        
        .hosting-provider {
            text-align: center;
            margin-top: 1rem;
            color: #3498db;
            font-weight: 600;
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .nav-link {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            .page-hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #2c3e50;
                flex-direction: column;
                padding: 20px;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            }
            
            .main-nav.active {
                display: flex;
            }
            
            .nav-item {
                width: 100%;
            }
            
            .nav-link {
                border-radius: 8px;
                margin-bottom: 5px;
            }
            
            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(0,0,0,0.1);
                margin-top: 5px;
                display: none;
            }
            
            .dropdown.active .dropdown-content {
                display: block;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .language-switcher {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
                justify-content: center;
            }
            
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .comparison-item {
                flex-direction: column;
            }
            
            .item-value {
                text-align: left;
                margin-top: 0.5rem;
            }
        }