        :root {
            --color-primary: #1B2838;
            --color-secondary: #C9A227;
            --color-bg: #F5F5F5;
            --color-text: #333;
            --color-text-light: #666;
            --color-white: #FFFFFF;
            --color-border: #E0E0E0;
            --color-success: #28a745;
            --color-error: #dc3545;
            --flag-blue: #002B7F;
            --flag-yellow: #FCD116;
            --flag-red: #CE1126;
        }

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

        body {
            font-family: 'Titillium Web', sans-serif;
            line-height: 1.6;
            color: var(--color-text);
            background: var(--color-bg);
        }

        /* Navigation */
        nav {
            background: var(--color-primary);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
        }

        .logo-text h1 {
            color: var(--color-white);
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .logo-text h1 .highlight-blue { color: var(--flag-blue); }
        .logo-text h1 .highlight-yellow { color: var(--flag-yellow); }
        .logo-text h1 .highlight-red { color: var(--flag-red); }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--color-primary) 0%, #2c3e50 100%);
            color: var(--color-white);
            padding: 3rem 2rem;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Main Content */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .gdpr-notice {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-radius: 8px;
        }

        .gdpr-notice h2 {
            font-family: 'Oswald', sans-serif;
            color: #856404;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .gdpr-notice p {
            color: #856404;
            line-height: 1.8;
        }

        .content-box {
            background: var(--color-white);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }

        .content-box h2 {
            font-family: 'Oswald', sans-serif;
            color: var(--color-primary);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--color-secondary);
        }

        .content-box h3 {
            font-family: 'Oswald', sans-serif;
            color: var(--color-primary);
            font-size: 1.3rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .content-box p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .content-box ul, .content-box ol {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        .content-box li {
            margin-bottom: 0.75rem;
            line-height: 1.8;
        }

        .highlight-box {
            background: #e8f4f8;
            border-left: 4px solid var(--color-secondary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 4px;
        }

        .highlight-box strong {
            color: var(--color-primary);
            font-size: 1.1rem;
        }

        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .right-card {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--color-border);
        }

        .right-card h4 {
            font-family: 'Oswald', sans-serif;
            color: var(--color-secondary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .right-card p {
            font-size: 0.95rem;
            margin: 0;
        }

        /* Consent Section */
        .consent-section {
            background: var(--color-white);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 2px solid var(--color-secondary);
        }

        .consent-section h2 {
            font-family: 'Oswald', sans-serif;
            color: var(--color-primary);
            font-size: 1.8rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .consent-checkbox {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 2px solid var(--color-border);
            cursor: pointer;
            transition: all 0.3s;
        }

        .consent-checkbox:hover {
            border-color: var(--color-secondary);
            background: #fff;
        }

        .consent-checkbox input[type="checkbox"] {
            width: 24px;
            height: 24px;
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .consent-checkbox label {
            flex: 1;
            cursor: pointer;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .consent-checkbox strong {
            color: var(--color-primary);
        }

        .button-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Oswald', sans-serif;
            text-decoration: none;
            display: inline-block;
        }

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

        .btn-primary:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
        }

        .btn-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-text);
            border: 2px solid var(--color-border);
        }

        .btn-secondary:hover {
            background: var(--color-bg);
            border-color: var(--color-text);
        }

        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
            display: none;
            border-left: 4px solid var(--color-error);
        }

        .error-message.show {
            display: block;
        }

        /* Table */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }

        table th {
            background: var(--color-primary);
            color: var(--color-white);
            padding: 1rem;
            text-align: left;
            font-family: 'Oswald', sans-serif;
        }

        table td {
            padding: 1rem;
            border-bottom: 1px solid var(--color-border);
        }

        table tr:hover {
            background: #f8f9fa;
        }

        /* Footer */
        footer {
            background: var(--color-primary);
            color: var(--color-white);
            padding: 2rem;
            text-align: center;
            margin-top: 3rem;
        }

        footer p {
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .container {
                padding: 2rem 1.5rem;
            }

            .content-box {
                padding: 1.5rem;
            }

            .consent-section {
                padding: 1.5rem;
            }

            .button-group {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            table {
                font-size: 0.9rem;
            }

            table th, table td {
                padding: 0.75rem 0.5rem;
            }
        }

/* === Utility classes === */
.text-center-mt2 { text-align: center; margin-top: 2rem; }
.btn-primary-lg { display: inline-block; background: var(--color-primary); color: #fff; padding: 1rem 2rem; border-radius: var(--radius-md); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; }
.mt-15 { margin-top: 15px; }
.footer-bottom-col { flex-direction: column; text-align: center; }
.footer-legal-center { justify-content: center; }
.footer-credit { margin-top: 1rem; font-size: 0.85rem; opacity: 0.7; }
.gdpr-contact { margin-top: 0.5rem; font-size: 0.9rem; }
.link-secondary { color: var(--color-secondary); }
