
        :root {
            --primary: #004a99;
            --primary-light: #0056b3;
            --accent: #ffc107;
            --accent-hover: #e5ac00;
            --dark: #1e272e;
            --light-bg: #f4f7f6;
            --white: #ffffff;
            --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
            --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            margin: 0;
            color: var(--dark);
            background-color: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        /* --- Header --- */
        header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }

        .logo { 
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800; 
            color: var(--primary);
            text-decoration: none;
            font-size: 1.4rem;
        }

        .logo img { height: 45px; border-radius: 8px; }

        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(135deg, rgba(0, 40, 85, 0.9), rgba(0, 86, 179, 0.8));
            min-height: 85vh;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px 20px;
        }

        .hero h1 { 
            font-size: clamp(2.5rem, 6vw, 4.5rem); 
            margin: 0; 
            font-weight: 800;
            line-height: 1.1;
        }

        .hero h2 { 
            font-weight: 300; 
            font-size: clamp(1.2rem, 3vw, 1.8rem); 
            max-width: 800px; 
            margin: 20px auto; 
        }

        /* --- Buttons --- */
        .btn-container { display: flex; flex-direction: column; gap: 20px; align-items: center; }
        
        .btn-cta {
            background: var(--accent);
            color: #000;
            padding: 20px 45px;
            text-decoration: none;
            font-weight: 700;
            border-radius: 12px;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-cta:hover { 
            transform: translateY(-3px); 
            box-shadow: 0 15px 25px rgba(255, 193, 7, 0.4); 
            background: var(--accent-hover); 
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.5);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-secondary:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

        /* --- Services --- */
        .services { padding: 100px 5%; background: var(--light-bg); }
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; }
        .section-title .underline { width: 60px; height: 4px; background: var(--accent); margin: 0 auto; border-radius: 2px; }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--white);
            padding: 50px 35px;
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
            overflow: hidden;
        }

        .service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
        
        .service-card .icon-wrapper {
            font-size: 3rem;
            color: var(--primary-light);
            margin-bottom: 25px;
        }

        .service-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); }

        /* --- Professional Section --- */
        .pro-banner {
            background: var(--primary);
            color: white;
            padding: 40px;
            border-radius: 24px;
            max-width: 1200px;
            margin: 0 auto 100px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* --- List Section --- */
        .list-section { padding: 80px 5%; }
        .list-card {
            background: var(--white);
            padding: 50px;
            border-radius: 30px;
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid #eee;
        }

        .custom-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .custom-list li {
            padding: 10px 15px;
            background: #f8fbff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            color: #444;
        }

        .custom-list li i { color: #2ecc71; }

        /* --- Modal & Privacy --- */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(8px);
            z-index: 2000;
            justify-content: center; align-items: center;
            padding: 20px;
        }

        .modal-box {
            background: white;
            padding: 40px;
            border-radius: 28px;
            max-width: 550px;
            width: 100%;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
        }

        #iframe-container {
            margin-top: 20px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #eee;
            opacity: 0.2;
            filter: grayscale(1);
            pointer-events: none;
            transition: var(--transition);
        }

        #iframe-container.active { opacity: 1; filter: grayscale(0); pointer-events: auto; }

        .privacy-checkbox-container {
            background: #fff9e6;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid #ffeeba;
            margin-bottom: 20px;
        }

        footer { background: var(--dark); color: #a4b0be; text-align: center; padding: 60px 0; }
        footer a { color: var(--white); text-decoration: none; }

        @media (max-width: 768px) {
            .hero { padding: 80px 15px; }
            .pro-banner { text-align: center; justify-content: center; }
        }
		
		/* --- Cookie Banner Moderno --- */
		#cookie-banner {
			position: fixed;
			bottom: 20px;
			right: 20px;
			left: 20px; /* Default per mobile */
			max-width: 400px;
			background: rgba(30, 39, 46, 0.95);
			backdrop-filter: blur(10px);
			color: #fff;
			padding: 25px;
			border-radius: 20px;
			box-shadow: 0 15px 35px rgba(0,0,0,0.3);
			z-index: 9999;
			display: flex;
			flex-direction: column;
			gap: 15px;
			border: 1px solid rgba(255,255,255,0.1);
		}

		#cookie-banner p {
			margin: 0;
			font-size: 0.9rem;
			line-height: 1.4;
			color: #d1d8e0;
		}

		.cookie-buttons {
			display: flex;
			gap: 10px;
		}

		.cookie-btn {
			flex: 1;
			padding: 12px;
			border: none;
			border-radius: 10px;
			font-weight: 600;
			cursor: pointer;
			transition: var(--transition);
			font-size: 0.85rem;
		}

		.btn-accept { background: var(--accent); color: #000; }
		.btn-accept:hover { background: var(--accent-hover); }

		.btn-decline { background: rgba(255,255,255,0.1); color: #fff; }
		.btn-decline:hover { background: rgba(255,255,255,0.2); }

		/* Desktop adjustment */
		@media (min-width: 768px) {
			#cookie-banner {
				left: auto;
				right: 30px;
				bottom: 30px;
			}
		}
