* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        body { background-color: #0d0d0d; color: #FFFFFF; overflow-x: hidden; }
        .background-animation { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, #00aaff, #0004ff, #2b2b2b, #000000); background-size: 400%; animation: gradientBG 10s ease infinite; opacity: 0.1; z-index: -1; }
        @keyframes gradientBG { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        header { background: #000000; padding: 0.8rem 1.5rem; position: fixed; width: 100%; z-index: 1000; backdrop-filter: blur(20px); }
        nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo { font-size: 1.8rem; font-weight: 700; color: #00aaff; text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 170, 255, 0.3); animation: glow 2s ease-in-out infinite; transition: transform 0.3s; }
        .logo:hover { transform: scale(1.1); }
        @keyframes glow { 
            0% { text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 170, 255, 0.3); } 
            50% { text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 170, 255, 0.4); } 
            100% { text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 170, 255, 0.3); } 
        }
        nav ul { display: flex; list-style: none; }
        nav ul li { margin-left: 1.5rem; }
        nav ul li a { color: #CCCCCC; text-decoration: none; font-size: 0.9rem; font-weight: 500; position: relative; transition: color 0.3s, transform 0.3s, text-shadow 0.3s; }
        nav ul li a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: linear-gradient(45deg, #00aaff, #ff007a); transition: width 0.2s; }
        nav ul li a:hover { color: #00aaff; transform: scale(1.1); text-shadow: 0 0 8px rgba(0, 170, 255, 0.8); }
        nav ul li a:hover::after { width: 100%; }
        nav ul li a.active { color: #00aaff; animation: pulse 2s infinite; }
        nav ul li a.active::after { width: 100%; }
        @keyframes pulse { 0% { text-shadow: 0 0 5px rgba(0, 170, 255, 0.5); } 50% { text-shadow: 0 0 15px rgba(0, 170, 255, 0.8); } 100% { text-shadow: 0 0 5px rgba(0, 170, 255, 0.5); } }
        .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; }
        .hamburger span { display: block; width: 25px; height: 3px; background: #00aaff; margin: 5px 0; transition: all 0.3s ease; box-shadow: 0 0 5px rgba(0, 170, 255, 0.7); }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
        .hero { height: 80vh; background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://via.placeholder.com/1920x1080?text=Careers+Image'); background-size: cover; background-attachment: fixed; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
        .hero-content h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; animation: fadeInDown 1s ease-out; text-shadow: 0 0 20px rgba(0, 170, 255, 0.7); }
        .hero-content p { font-size: 1.2rem; font-weight: 400; margin-bottom: 2rem; animation: fadeInUp 1s ease-out 0.3s both; color: #CCCCCC; }
        .cta-button { background: linear-gradient(45deg, #1E3A8A, #2D1B4B); color: #FFFFFF; padding: 1rem 3rem; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 1.1rem; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 0 15px rgba(30, 58, 138, 0.5); }
        .cta-button:hover { transform: scale(1.1); box-shadow: 0 0 25px rgba(30, 58, 138, 0.8); }
        @keyframes fadeInDown { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
        .vacancies-section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; text-align: center; }
        .vacancies-section h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
        .filter-container { margin-bottom: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
        .filter-container select { padding: 0.5rem; border-radius: 5px; border: 1px solid rgba(0, 170, 255, 0.3); background: #000000; color: #FFFFFF; font-size: 1rem; }
        .filter-container select:focus { outline: none; border-color: #00aaff; box-shadow: 0 0 5px rgba(0, 170, 255, 0.5); }
        .filter-container button { 
            background: #00aaff; 
            color: #fff; 
            border: none; 
            padding: 0.5rem 1rem; 
            border-radius: 5px; 
            cursor: pointer; 
            font-size: 1rem; 
            font-weight: 500; 
            transition: transform 0.3s, box-shadow 0.3s, background 0.3s; 
        }
        .filter-container button:hover { 
            background: #00ccff; 
            transform: scale(1.1); 
            box-shadow: 0 0 15px rgba(0, 170, 255, 0.8); 
        }
        .vacancies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
        .vacancy-card { 
            background: rgba(255, 255, 255, 0.05); 
            padding: 2rem; 
            border-radius: 15px; 
            border: 1px solid rgba(0, 170, 255, 0.3); 
            transition: transform 0.3s, box-shadow 0.3s; 
            opacity: 0; 
            transform: translateY(50px); 
        }
        .vacancy-card.reveal { 
            opacity: 1; 
            transform: translateY(0); 
        }
        .vacancy-card:hover { 
            transform: translateY(-10px); 
            box-shadow: 0 0 20px rgba(0, 170, 255, 0.5); 
        }
        .vacancy-card h3 { font-size: 1.8rem; font-weight: 600; margin-bottom: 1rem; color: #00aaff; }
        .vacancy-card p { font-size: 1rem; font-weight: 400; color: #CCCCCC; margin-bottom: 0.5rem; }
        .vacancy-card a { 
            background: linear-gradient(45deg, #1E3A8A, #2D1B4B); 
            color: #FFFFFF; 
            padding: 0.8rem 2rem; 
            text-decoration: none; 
            border-radius: 50px; 
            font-weight: 600; 
            font-size: 1rem; 
            transition: transform 0.3s, box-shadow 0.3s; 
            box-shadow: 0 0 15px rgba(30, 58, 138, 0.5); 
            display: inline-block; 
            position: relative; 
            overflow: hidden; 
        }
        .vacancy-card a::before { 
            content: ''; 
            position: absolute; 
            top: 0; 
            left: -100%; 
            width: 100%; 
            height: 100%; 
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); 
            transition: left 0.3s ease; 
        }
        .vacancy-card a:hover::before { 
            left: 100%; 
        }
        .vacancy-card a:hover { 
            transform: scale(1.1); 
            box-shadow: 0 0 25px rgba(30, 58, 138, 0.8); 
        }
        .vacancy-card.hidden { display: none; }
        .accreditation-grid { padding: 2rem 0; background: rgba(0, 0, 0, 0.7); display: flex; justify-content: center; }
        .accreditation-grid-inner { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
            gap: 1rem; 
            max-width: 1200px; 
            width: 100%; 
            padding: 0 1rem; 
        }
        .accreditation-item { 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
            opacity: 0; 
            transform: scale(0.8); 
        }
        .accreditation-item.reveal { 
            opacity: 1; 
            transform: scale(1); 
        }
        .accreditation-item:hover { 
            transform: scale(1.1) translateZ(20px); 
        }
        .accreditation-item img { 
            width: 150px; 
            height: 150px; 
            object-fit: contain; 
            filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.3)); 
            transition: filter 0.3s ease; 
        }
        .accreditation-item:hover img { 
            filter: drop-shadow(0 0 15px rgba(0, 170, 255, 0.5)); 
        }
        footer { background: #000; padding: 2rem; text-align: center; color: #CCCCCC; border-top: 1px solid rgba(0, 170, 255, 0.3); }
        .cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(0, 0, 0, 0.9); color: #FFFFFF; padding: 1rem; text-align: center; z-index: 1001; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5); }
        .cookie-banner p { margin-bottom: 1rem; font-size: 1rem; font-weight: 400; }
        .cookie-banner a { color: #00aaff; text-decoration: none; }
        .cookie-banner a:hover { text-decoration: underline; }
        .cookie-banner button { background: #00aaff; color: #fff; border: none; padding: 0.5rem 1rem; border-radius: 5px; cursor: pointer; font-size: 1rem; font-weight: 500; transition: background 0.3s; }
        .cookie-banner button:hover { background: #00ccff; }
        .cookie-banner.hidden { display: none; }
        .cookie-buttons { display: flex; justify-content: center; gap: 1rem; }
        .trustlogo-container img { max-width: 100px; margin-top: 10px; }
        @media (max-width: 768px) { 
            .vacancies-section { padding: 4.5rem 2rem; }
            .hero-content h1 { font-size: 2.5rem; }
            .hero-content p { font-size: 1rem; }
            .logo { font-size: 1.5rem; }
            .hamburger { display: block; }
            nav ul { display: none; flex-direction: column; position: fixed; top: 0; right: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.95); padding: 4rem 2rem; z-index: 1000; animation: slideIn 0.3s ease-out; }
            nav ul.active { display: flex; }
            nav ul li { margin: 0; text-align: center; }
            nav ul li a { font-size: 1.2rem; padding: 1rem; display: block; }
            @keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
            .vacancies-grid { grid-template-columns: 1fr; }
            .filter-container { flex-direction: column; align-items: center; }
            .filter-container select { width: 100%; max-width: 300px; }
            .cookie-banner button { padding: 0.4rem 0.8rem; font-size: 0.9rem; }
            .trustlogo-container img { max-width: 80px; }
            .accreditation-grid-inner { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
            .accreditation-item img { width: 120px; height: 120px; }
        }