        :root {
            --color-primary: #1B2838;
            --color-secondary: #C9A227;
            --color-bg: #F5F5F5;
            --color-text: #333;
            --color-text-light: #666;
            --color-white: #FFFFFF;
            --color-border: #E0E0E0;
            --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); }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--color-white);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--color-secondary);
        }

        /* Hero */
        .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: 0.5rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

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

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

        .form-section h2 {
            font-family: 'Oswald', sans-serif;
            color: var(--color-primary);
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--color-secondary);
            font-weight: 700;
        }

        /* Form Elements */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-text);
        }

        .required {
            color: var(--flag-red);
        }

        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--color-border);
            border-radius: 8px;
            font-family: 'Titillium Web', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--color-secondary);
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        .help-text {
            font-size: 0.85rem;
            color: var(--color-text-light);
            margin-top: 0.25rem;
        }

        /* CNP Feedback */
        .cnp-feedback {
            font-size: 0.85rem;
            margin-top: 0.5rem;
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
        }
        .cnp-feedback.valid {
            background: #e8f5e9;
            color: #2e7d32;
            border-left: 3px solid #4caf50;
        }
        .cnp-feedback.invalid {
            background: #ffebee;
            color: #c62828;
            border-left: 3px solid #f44336;
        }
        .cnp-feedback.warning {
            background: #fff3e0;
            color: #e65100;
            border-left: 3px solid #ff9800;
        }
        .cnp-input-valid {
            border-color: #4caf50 !important;
            background-color: #f1f8e9 !important;
        }
        .cnp-input-invalid {
            border-color: #f44336 !important;
            background-color: #ffebee !important;
        }

        /* Checkboxes & Radios */
        .choice-label {
            display: flex !important;
            align-items: center !important;
            cursor: pointer;
            padding: 0.75rem 1rem;
            background: var(--color-bg);
            border-radius: 8px;
            border: 2px solid var(--color-border);
            margin-bottom: 0.75rem;
            transition: all 0.3s;
        }

        .choice-label:hover {
            background: #E8E9EA;
            border-color: var(--color-secondary);
        }

        .choice-label input[type="checkbox"],
        .choice-label input[type="radio"] {
            width: 20px !important;
            height: 20px !important;
            min-width: 20px !important;
            margin-right: 0.75rem !important;
            accent-color: var(--color-secondary);
            cursor: pointer;
        }

        .choice-label span {
            flex: 1;
        }

        /* Permit Grid */
        .permit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.75rem;
        }

        .permit-categories {
            display: none;
            border-top: 2px solid var(--color-border);
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }

        .permit-categories.active {
            display: block;
        }

        /* Info Boxes */
        .info-box {
            border-radius: 8px;
            padding: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .info-box-warning {
            background: #FEF3C7;
            border: 2px solid #F59E0B;
        }

        .info-box-info {
            background: #DBEAFE;
            border: 2px solid #3B82F6;
        }

        .info-box-success {
            background: #F0FDF4;
            border: 2px solid #10B981;
        }

        /* GDPR Box */
        .gdpr-box {
            max-height: 400px;
            overflow-y: auto;
            background: var(--color-bg);
            padding: 1.5rem;
            border-radius: 8px;
            border: 2px solid var(--color-border);
            margin-bottom: 1.5rem;
        }

        .gdpr-box h3 {
            color: var(--color-primary);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .gdpr-box p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        /* Submit Button */
        .btn-submit {
            background: var(--color-secondary);
            color: var(--color-primary);
            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;
            width: 100%;
        }

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

        /* Download Button */
        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #10B981;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin: 0.5rem 0;
            transition: all 0.3s;
        }

        .btn-download:hover {
            background: #059669;
            transform: translateY(-2px);
        }

        /* Hidden Field */
        .hidden-field {
            display: none !important;
        }

        /* Footer */
        footer {
            background: var(--color-primary);
            color: var(--color-white);
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-family: 'Oswald', sans-serif;
            color: var(--color-secondary);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-section p,
        .footer-section a {
            color: var(--color-white);
            opacity: 0.8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: opacity 0.3s;
        }

        .footer-section a:hover {
            opacity: 1;
            color: var(--color-secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .form-section {
                padding: 1.5rem;
            }
        }

/* === Utility classes (migrated from inline styles) === */
.d-none { display: none; }
.text-uppercase { text-transform: uppercase; }
.mb-1 { margin-bottom: 1rem; }
.mb-half { margin-bottom: 0.5rem; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; }
.ml-list { margin-left: 1.5rem; }
.ml-list-mb { margin-left: 1.5rem; margin-bottom: 1rem; }
.fw-600 { font-weight: 600; }
.fw-600-mb-half { font-weight: 600; margin-bottom: 0.5rem; }
.fw-600-mb-1 { font-weight: 600; margin-bottom: 1rem; }
.fw-600-my { font-weight: 600; margin: 1.5rem 0 1rem; }
.choice-label-white { background: white; }
.choice-label-white-start { background: white; align-items: flex-start; }
.text-center { text-align: center; }
.help-category { margin-bottom: 1rem; }
.turnstile-error { color: #dc3545; font-size: 13px; margin-top: 8px; display: none; }
