
        .section-hint {
            font-size: 12px;
            color: var(--text-muted);
            text-align: left;
            margin-top: 6px;
        }

        textarea {
            height: 120px;
            resize: vertical;
        }

        .button-group {
            margin-top: 30px;
            display: flex;
            justify-content: center;
        }

        .page-footer {
            margin-top: 40px;
            text-align: center;
            color: var(--sub-text-color);
            font-size: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
        }

        .footer-logo-link img {
            height: 28px;
            width: auto;
            display: block;
        }

        .btn {
            padding: 14px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: white;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .btn-primary:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: #fff;
            color: var(--primary-color);
            border: 1px solid var(--border-color);
        }

        .btn-secondary:hover {
            background-color: #f8f9fa;
        }

        .confirmation-modal {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.55);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 999;
        }

        .modal-content {
            background: #fff;
            width: min(700px, 90vw);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
            max-height: 90vh;
            display: flex;
            flex-direction: column;
        }

        .modal-content h2 {
            margin: 0 0 20px;
            color: var(--primary-color);
        }

        .confirmation-details {
            display: grid;
            gap: 15px;
            overflow-y: auto;
            flex: 1;
        }

        .confirmation-row {
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 12px 16px;
            background: #f9fafb;
        }

        .confirmation-row.is-empty {
            opacity: 0.75;
            border-style: dashed;
        }

        .confirmation-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 6px;
            display: block;
        }

        .confirmation-value {
            font-weight: 600;
            color: var(--text-color);
            white-space: pre-wrap;
        }

        .choice-chip {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 0.85rem;
            margin: 0 6px 6px 0;
            border: 1px solid var(--border-color);
        }

        .choice-chip.selected {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }

        .choice-chip.unselected {
            background: #e2e8f0;
            color: #94a3b8;
            border-color: #e2e8f0;
        }

        .custom-entry {
            margin-top: 8px;
            padding: 10px 14px;
            border-radius: 14px;
            border: 1px dashed var(--border-color);
            background: #fff7ed;
            color: var(--text-color);
            font-weight: 600;
        }

        .modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            margin-top: 25px;
        }

        .modal-actions .btn {
            min-width: 120px;
            justify-content: center;
        }

        .confirmation-status {
            margin-top: 15px;
            min-height: 20px;
            font-size: 0.95rem;
            color: var(--text-muted);
            text-align: center;
        }

        .hidden {
            display: none;
        }

        .confirmation-modal.hidden {
            display: none;
        }

        .success-screen {
            position: fixed;
            inset: 0;
            background: #0f172a;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            padding: 40px 20px;
            z-index: 1000;
        }

        .success-screen.hidden {
            display: none;
        }

        .success-screen h2 {
            font-size: 2.4rem;
            margin-bottom: 15px;
        }

        .success-screen p {
            font-size: 1rem;
            color: #cbd5f5;
        }

        @media (max-width: 600px) {
            .grid {
                grid-template-columns: 1fr;
            }

            .form-container {
                padding: 25px;
            }

            .checkbox-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
        }

        /* Print visibility */
        @media print {
            .no-print {
                display: none;
            }

            body {
                padding: 0;
                background: white;
            }

            .form-container {
                box-shadow: none;
                border: none;
                padding: 0;
                max-width: none;
            }

            .checkbox-card {
                border: 1px solid #ddd;
                page-break-inside: avoid;
            }

            input[type="text"].other-input {
                display: block !important;
                border: 1px solid #ddd;
            }

            .section {
                page-break-inside: avoid;
            }
        }
    
