* { 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: 60vh; background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://via.placeholder.com/1920x1080?text=Security+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; }
        @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); } }
        .contact-content { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; text-align: center; }
        .contact-content h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 2rem; }
        .contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
        .form-container { background: rgba(255, 255, 255, 0.05); padding: 2rem; border-radius: 15px; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(0, 170, 255, 0.3); }
        .form-container:hover { transform: translateY(-10px); box-shadow: 0 0 20px rgba(0, 170, 255, 0.5); }
        .form-container form { display: flex; flex-direction: column; gap: 1.5rem; }
        .form-container label { display: block; text-align: left; margin-bottom: 0.5rem; color: #CCCCCC; font-size: 1rem; }
        .form-container input, .form-container textarea { padding: 1rem; background: rgba(255, 255, 255, 0.1); border: 1px solid #00aaff; border-radius: 10px; color: #CCCCCC; font-size: 1rem; font-weight: 400; transition: box-shadow 0.3s; width: 100%; }
        .form-container select { padding: 1rem; background: #000000; border: 1px solid #00aaff; border-radius: 10px; color: #FFFFFF; font-size: 1rem; font-weight: 400; transition: box-shadow 0.3s; width: 100%; }
        .form-container input[type="date"] { padding: 1rem; background: #000000; border: 1px solid #00aaff; border-radius: 10px; color: #FFFFFF; font-size: 1rem; font-weight: 400; transition: box-shadow 0.3s; width: 100%; }
        .form-container input:focus, .form-container textarea:focus, .form-container select:focus, .form-container input[type="date"]:focus { outline: none; box-shadow: 0 0 15px rgba(0, 170, 255, 0.5); }
        .form-container input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(100%); }
        .form-container input[type="date"]::-moz-calendar-picker-indicator { filter: invert(100%); }
        .form-container button { background: linear-gradient(45deg, #1E3A8A, #2D1B4B); color: #FFFFFF; padding: 1rem 3rem; border: none; border-radius: 50px; cursor: pointer; 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); }
        .form-container button:hover { transform: scale(1.1); box-shadow: 0 0 25px rgba(30, 58, 138, 0.8); }
        .form-container .add-btn, .form-container .remove-btn { background: #00aaff; padding: 0.5rem 1rem; border-radius: 5px; cursor: pointer; font-size: 0.9rem; transition: transform 0.3s, box-shadow 0.3s, background 0.3s; }
        .form-container .add-btn:hover, .form-container .remove-btn:hover { background: #00ccff; transform: scale(1.1); box-shadow: 0 0 15px rgba(0, 170, 255, 0.8); }
        .form-container .remove-btn { background: #ff007a; }
        .form-container .remove-btn:hover { background: #ff3399; }
        .form-section { margin-top: 1.5rem; padding: 1rem; border: 1px solid rgba(0, 170, 255, 0.3); border-radius: 10px; }
        .form-section h4 { font-size: 1.2rem; color: #00aaff; margin-bottom: 1rem; }
        .form-entry { margin-bottom: 1rem; padding: 1rem; background: rgba(255, 255, 255, 0.03); border-radius: 5px; position: relative; }
        .form-field { display: block; margin-bottom: 1rem; }
        .form-message { margin-top: 1rem; padding: 1rem; border-radius: 10px; display: none; text-align: center; }
        .success { background: rgba(0, 255, 136, 0.2); color: #00ff88; }
        .error { background: rgba(255, 0, 122, 0.2); color: #ff007a; }
        .error ul { list-style: none; padding: 0; margin: 0.5rem 0 0; }
        .error li { margin-bottom: 0.5rem; }
        .hidden { display: none; }
        .echo-response { max-width: 1200px; margin: 2rem auto; background: rgba(255, 255, 255, 0.05); padding: 2rem; border-radius: 15px; border: 1px solid rgba(0, 170, 255, 0.3); }
        .echo-response h2 { font-size: 2rem; color: #00aaff; margin-bottom: 1.5rem; }
        .echo-response .section { margin-bottom: 1.5rem; }
        .echo-response p { font-size: 1rem; color: #CCCCCC; margin: 0.5rem 0; }
        .echo-response strong { color: #FFFFFF; }
        .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) { 
            .hero-content h1 { font-size: 2.5rem; } 
            .hero-content p { font-size: 1rem; } 
            .contact-content { padding: 4.5rem 2rem; } 
            .contact-content h2 { font-size: 2rem; } 
            .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); } }
            .cookie-banner button { padding: 0.4rem 0.8rem; font-size: 0.9rem; }
            .trustlogo-container img { max-width: 80px; }
            .form-container { padding: 1.5rem; }
            .form-container form { gap: 1rem; }
            .form-container input, .form-container textarea { width: 100%; font-size: 0.9rem; padding: 0.8rem; }
            .form-container select { width: 100%; font-size: 0.9rem; padding: 0.8rem; background: #000000; color: #FFFFFF; }
            .form-container input[type="date"] { width: 100%; font-size: 0.9rem; padding: 0.8rem; background: #000000; color: #FFFFFF; }
            .form-container button { padding: 0.8rem 2rem; font-size: 1rem; max-width: 100%; }
            .form-container .add-btn, .form-container .remove-btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; min-height: 44px; }
            .form-section { padding: 0.8rem; }
            .form-entry { padding: 0.8rem; width: 100%; box-sizing: border-box; }
            .cf-turnstile { width: 100%; max-width: 300px; }
            .accreditation-grid-inner { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
            .accreditation-item img { width: 120px; height: 120px; }
        }