:root {
            --primary: #1e3a8a;
            --secondary: #3b82f6;
            --accent: #f97316;
            --dark: #1f2937;
            --light: #f3f4f6;
            --white: #ffffff;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
            padding-top: 80px; /* Hely a fix menünek */
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        .btn {
            display: inline-block;
            padding: 12px 32px;
            background: var(--accent);
            color: var(--white);
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(249, 115, 22, 0.4);
            background: #ea580c;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i { color: var(--secondary); }

        .nav-links { display: flex; gap: 30px; }
        .nav-links a { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
        .nav-links a:hover, .nav-links a.active { color: var(--secondary); }
        .nav-cta { padding: 8px 20px; font-size: 0.8rem; margin-top: 0;}

        .hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); }

        .page-header {
            background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.85)), url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .card {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            text-align: left;
            border-bottom: 4px solid transparent;
            border: 1px solid #e5e7eb;
        }

        .card:hover {
            transform: translateY(-5px);
            border-bottom: 4px solid var(--secondary);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .card i {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 15px;
            display: block;
        }

        .card h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
            color: var(--dark);
        }

        .card p { color: #4b5563; font-size: 0.95rem; }

        /* Aktuális szekció egyedi stílusa */
        .news-box {
            background: var(--light);
            border-left: 5px solid var(--accent);
            padding: 40px;
            border-radius: 0 12px 12px 0;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }
        
        .news-box h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .news-box ul {
            margin: 20px 0;
            padding-left: 5px;
        }

        .news-box ul li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .news-box ul li i {
            color: var(--secondary);
            width: 20px;
        }

        footer {
            background: #111827;
            color: #9ca3af;
            padding: 50px 0 20px;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo { color: var(--white); font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; display: block; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a:hover { color: var(--white); }

        .copyright {
            text-align: center;
            border-top: 1px solid #374151;
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .page-header h1 { font-size: 2.2rem; }
            .hamburger { display: block; }
            
            .nav-links {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            
            .nav-links.active { transform: translateY(0); }
            .news-box { padding: 25px; }
        }