    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --success: #27ae60;
            --danger: #e74c3c;
            --warning: #f39c12;
            --light: #ecf0f1;
            --dark: #34495e;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --radius: 12px;
            --transition: all 0.3s ease;
            --zapier: #ff4a00;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f5f7fa;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: var(--radius);
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }

        .header h1 {
            font-size: clamp(24px, 5vw, 32px);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .header p {
            font-size: clamp(14px, 3vw, 18px);
            opacity: 0.9;
        }

        /* Progress Bar */
        .progress-container {
            background: white;
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            position: sticky;
            top: 10px;
            z-index: 100;
        }

        .progress-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            padding: 0 10px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .progress-line {
            position: absolute;
            top: 50%;
            left: 10px;
            right: 10px;
            height: 2px;
            background: var(--light);
            transform: translateY(-50%);
            z-index: 1;
        }

        .progress-line-active {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: var(--secondary);
            transition: width 0.5s ease;
            z-index: 2;
        }

        .progress-step {
            position: relative;
            z-index: 3;
            background: white;
            padding: 0 5px;
            min-width: 80px;
            text-align: center;
        }

        .step-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: white;
            border: 3px solid var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--dark);
            margin: 0 auto 5px;
            transition: var(--transition);
            cursor: pointer;
        }

        .step-circle.active {
            border-color: var(--secondary);
            background: var(--secondary);
            color: white;
            transform: scale(1.1);
        }

        .step-circle.completed {
            border-color: var(--success);
            background: var(--success);
            color: white;
        }

        .step-title {
            font-size: 12px;
            color: var(--dark);
            white-space: nowrap;
        }

        /* Form Sections */
        .form-section {
            background: white;
            padding: 30px 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .form-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            font-size: clamp(20px, 4vw, 28px);
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-icon {
            font-size: 28px;
        }

        /* Form Elements */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
            font-size: 16px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--light);
            border-radius: 8px;
            font-size: 16px;
            transition: var(--transition);
            background: white;
            -webkit-appearance: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        .form-group input[readonly] {
            background: #f8f9fa;
            color: #6c757d;
            cursor: not-allowed;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Buttons */
        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            touch-action: manipulation;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--secondary) 0%, #2980b9 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

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

        .btn-secondary:hover {
            background: #bdc3c7;
        }

        .btn-success {
            background: linear-gradient(135deg, var(--success) 0%, #229954 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
        }

        .btn-zapier {
            background: linear-gradient(135deg, var(--zapier) 0%, #cc3a00 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 74, 0, 0.3);
        }

        .btn-zapier:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 74, 0, 0.4);
        }

        .btn-danger {
            background: linear-gradient(135deg, var(--danger) 0%, #c0392b 100%);
            color: white;
        }

        .btn-group {
            display: flex;
            gap: 15px;
            justify-content: space-between;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .btn-group .btn {
            flex: 1;
            min-width: 150px;
        }

        /* Large Buttons for Mobile */
        .large-btn-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .large-btn {
            padding: 30px 20px;
            border: 3px solid var(--light);
            border-radius: var(--radius);
            background: white;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            min-height: 120px;
            justify-content: center;
        }

        .large-btn:hover {
            border-color: var(--secondary);
            background: rgba(52, 152, 219, 0.05);
            transform: translateY(-2px);
        }

        .large-btn.selected {
            border-color: var(--secondary);
            background: var(--secondary);
            color: white;
        }

        .large-btn-icon {
            font-size: 32px;
        }

        /* Radio & Checkbox - Entièrement cliquables */
        .radio-group,
        .checkbox-group {
            display: grid;
            gap: 15px;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

        .radio-item,
        .checkbox-item {
            display: block;
            position: relative;
            padding: 15px 15px 15px 50px;
            border: 2px solid var(--light);
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            background: white;
            min-height: 60px;
            display: flex;
            align-items: center;
        }

        .radio-item:hover,
        .checkbox-item:hover {
            border-color: var(--secondary);
            background: #f8f9fa;
        }

        .radio-item input[type="radio"],
        .checkbox-item input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .radio-item .radio-checkmark,
        .checkbox-item .checkbox-checkmark {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            height: 22px;
            width: 22px;
            background-color: white;
            border: 2px solid #ccc;
            border-radius: 50%;
            transition: var(--transition);
        }

        .checkbox-item .checkbox-checkmark {
            border-radius: 4px;
        }

        .radio-item:hover .radio-checkmark,
        .checkbox-item:hover .checkbox-checkmark {
            border-color: var(--secondary);
        }

        .radio-item input:checked ~ .radio-checkmark,
        .checkbox-item input:checked ~ .checkbox-checkmark {
            background-color: var(--secondary);
            border-color: var(--secondary);
        }

        .radio-item .radio-checkmark:after {
            content: "";
            position: absolute;
            display: none;
            top: 6px;
            left: 6px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: white;
        }

        .checkbox-item .checkbox-checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 7px;
            top: 3px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .radio-item input:checked ~ .radio-checkmark:after,
        .checkbox-item input:checked ~ .checkbox-checkmark:after {
            display: block;
        }

        .radio-item.selected,
        .checkbox-item.selected {
            border-color: var(--secondary);
            background: rgba(52, 152, 219, 0.05);
        }

        /* Mandants */
        .mandant-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .mandant-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border: 2px solid var(--light);
            transition: var(--transition);
            position: relative;
        }

        .mandant-card:hover {
            border-color: var(--secondary);
            box-shadow: 0 4px 12px rgba(52, 152, 219, 0.1);
        }

        .mandant-number {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--secondary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }

        .mandant-remove {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--danger);
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 18px;
        }

        .mandant-remove:hover {
            transform: scale(1.1);
        }

        /* Upload Area */
        .upload-area {
            border: 3px dashed var(--secondary);
            border-radius: var(--radius);
            padding: 40px 20px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            background: rgba(52, 152, 219, 0.05);
            margin-bottom: 20px;
        }

        .upload-area:hover {
            border-color: var(--primary);
            background: rgba(52, 152, 219, 0.1);
        }

        .upload-area.dragging {
            border-color: var(--success);
            background: rgba(39, 174, 96, 0.1);
        }

        .upload-area.uploading {
            cursor: not-allowed;
            opacity: 0.7;
        }

        .upload-icon {
            font-size: 48px;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .upload-progress {
            display: none;
            margin-top: 20px;
        }

        .upload-progress.active {
            display: block;
        }

        .progress-bar-upload {
            width: 100%;
            height: 20px;
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .progress-bar-fill {
            height: 100%;
            background: var(--secondary);
            transition: width 0.3s ease;
            width: 0%;
        }

        .file-list {
            margin-top: 20px;
        }

        .file-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .file-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .file-icon {
            font-size: 24px;
            color: var(--danger);
        }

        .file-remove {
            background: var(--danger);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
        }

        .file-remove:hover {
            transform: scale(1.05);
        }

        /* Summary */
        .summary-section {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .summary-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--light);
        }

        .summary-item:last-child {
            border-bottom: none;
        }

        .summary-label {
            font-weight: 500;
            color: #6c757d;
        }

        .summary-value {
            font-weight: 600;
            color: var(--dark);
        }

        /* Alerts */
        .alert {
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .alert-info {
            background: rgba(52, 152, 219, 0.1);
            color: var(--secondary);
            border: 1px solid rgba(52, 152, 219, 0.3);
        }

        .alert-success {
            background: rgba(39, 174, 96, 0.1);
            color: var(--success);
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

        .alert-warning {
            background: rgba(243, 156, 18, 0.1);
            color: var(--warning);
            border: 1px solid rgba(243, 156, 18, 0.3);
        }

        .alert-danger {
            background: rgba(231, 76, 60, 0.1);
            color: var(--danger);
            border: 1px solid rgba(231, 76, 60, 0.3);
        }

        /* Signature Canvas */
        .signature-container {
            border: 2px solid var(--secondary);
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            background: white;
        }

        .signature-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--light);
        }

        .signature-tab {
            padding: 10px 20px;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 600;
            color: #999;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
        }

        .signature-tab.active {
            color: var(--secondary);
            border-bottom-color: var(--secondary);
        }

        #signatureCanvas {
            border: 1px solid #ddd;
            border-radius: 4px;
            touch-action: none;
            display: block;
            margin: 0 auto;
        }

        .signature-text-input {
            font-size: 24px;
            text-align: center;
            font-family: 'Brush Script MT', cursive;
        }

        .signature-upload {
            text-align: center;
            padding: 40px;
            border: 2px dashed #ddd;
            border-radius: 8px;
        }

        .signature-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 14px;
            min-height: auto;
        }

        

        /* Signature Mode Selector */
        .signature-mode-selector {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .signature-mode-selector h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }

        .mandant-signature {
            background: white;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 8px;
            border: 2px solid var(--light);
        }

        .mandant-signature.present {
            border-color: var(--success);
            background: rgba(39, 174, 96, 0.05);
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .header {
                padding: 20px 15px;
            }

            .form-section {
                padding: 20px 15px;
            }

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

            .btn-group .btn {
                width: 100%;
            }

            .progress-bar {
                padding: 0 5px;
            }

            .progress-step {
                min-width: 60px;
            }

            .step-circle {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .step-title {
                font-size: 10px;
            }

            .mandant-grid {
                grid-template-columns: 1fr;
            }

            .radio-group,
            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .large-btn-grid {
                grid-template-columns: 1fr;
            }

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

        /* Loader */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .loader.active {
            display: flex;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid var(--light);
            border-top-color: var(--secondary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Preview Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: var(--radius);
            max-width: 1000px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-header {
            padding: 20px;
            border-bottom: 1px solid var(--light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            background: white;
            z-index: 10;
        }

        .modal-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .modal-close:hover {
            background: var(--light);
            color: var(--dark);
        }

        .modal-body {
            padding: 20px;
        }

        .modal-footer {
            padding: 20px;
            border-top: 1px solid var(--light);
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        /* PDF iframe */
        .pdf-preview-frame {
            width: 100%;
            height: 600px;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin: 10px 0;
        }

        /* Company fields toggle */
        .company-fields,
        .individual-fields {
            display: none;
            margin-top: 15px;
            padding: 15px;
            background: #f0f8ff;
            border-radius: 8px;
        }

        .company-fields.show,
        .individual-fields.show {
            display: block;
        }

        /* Currency Input */
        .currency-input-group {
            position: relative;
        }

        .currency-symbol {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-weight: 600;
            pointer-events: none;
        }

        .currency-input {
            padding-left: 35px !important;
        }

        /* Error States */
        .error {
            border-color: var(--danger) !important;
        }

        .error-message {
            color: var(--danger);
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

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

        /* Services Grid for Precontractual */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .service-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 3px solid var(--secondary);
            transition: var(--transition);
        }

        .service-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .service-item h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 16px;
        }

        .service-item p {
            color: #666;
            font-size: 14px;
            margin: 0;
        }

        /* Mediation Section */
        .mediation-section {
            background: #fff3cd;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            border-left: 4px solid var(--warning);
        }

        .mediation-section h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .mediation-section .contact-box {
            background: white;
            padding: 15px;
            border-radius: 5px;
            margin: 15px 0;
            border: 1px solid #ffeaa7;
        }

        /* Hidden Canvas for Signatures */
        .signature-canvas-wrapper {
            display: none;
        }

        .signature-preview {
            max-width: 300px;
            margin: 10px auto;
            text-align: center;
        }

        .signature-preview img {
            max-width: 100%;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 10px;
        }

        /* Fix pour le centrage et l'affichage des champs */
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
            font-size: 16px;
            text-align: left;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--light);
            border-radius: 8px;
            font-size: 16px;
            transition: var(--transition);
            background: white;
            box-sizing: border-box;
            text-align: left;
            display: block;
        }

        /* Summary section améliorée */
        .summary-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px solid var(--light);
            border-radius: var(--radius);
            padding: 25px;
            margin: 25px 0;
            box-shadow: var(--shadow);
        }

        .summary-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #dee2e6;
            font-size: 16px;
        }

        .summary-item:last-child {
            border-bottom: none;
            font-weight: 700;
        }

        .summary-label {
            font-weight: 600;
            color: var(--dark);
        }

        .summary-value {
            font-weight: 700;
            color: var(--primary);
        }

        /* Radio buttons améliorés */
        .radio-group {
            display: grid;
            gap: 15px;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            margin: 10px 0;
        }

        .radio-item {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 15px 20px;
            border: 2px solid var(--light);
            border-radius: 8px;
            transition: var(--transition);
            background: white;
            position: relative;
        }

        .radio-item:hover {
            border-color: var(--secondary);
            background: rgba(52, 152, 219, 0.05);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .radio-item input[type="radio"] {
            margin-right: 12px;
            width: 18px;
            height: 18px;
        }

        .radio-checkmark {
            margin-left: auto;
            width: 20px;
            height: 20px;
            border: 2px solid var(--light);
            border-radius: 50%;
            position: relative;
        }

        .radio-item input[type="radio"]:checked + .radio-checkmark {
            border-color: var(--secondary);
            background: var(--secondary);
        }

        .radio-item input[type="radio"]:checked + .radio-checkmark:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        /* Print Styles */
        @media print {
            body {
                background: white;
            }

            .header,
            .progress-container,
            .btn-group,
            .form-section {
                display: none !important;
            }

            .preview-section {
                display: block !important;
                box-shadow: none;
                padding: 0;
            }
        }

        /* Responsive fixes */
        @media (max-width: 768px) {
            .radio-group {
                grid-template-columns: 1fr;
            }
            
            .currency-input-group {
                width: 100%;
            }
            
            .summary-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
        }
    </style>
