 
        /* ===== CSS RESET & VARIABLES ===== */
        :root {
            /* Colors */
            --primary: #F50057;
            --primary-dark: #F50057;
            --primary-light: #F50057;
            --secondary: #f72585;
            --accent: #4cc9f0;
            --success: #4ade80;
            --warning: #f59e0b;
            --error: #ef4444;
            --dark: #1e293b;
            --dark-2: #334155;
            --light: #f8fafc;
            --light-2: #e2e8f0;
            --gray: #64748b;
            --gray-light: #94a3b8;
            
            /* Typography */
            --font-primary: 'Poppins', sans-serif;
            --font-size-xs: 0.75rem;
            --font-size-sm: 0.875rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.125rem;
            --font-size-xl: 1.25rem;
            --font-size-2xl: 1.5rem;
            --font-size-3xl: 1.875rem;
            --font-size-4xl: 2.25rem;
            
            /* Spacing */
            --space-1: 0.25rem;
            --space-2: 0.5rem;
            --space-3: 0.75rem;
            --space-4: 1rem;
            --space-5: 1.25rem;
            --space-6: 1.5rem;
            --space-8: 2rem;
            --space-10: 2.5rem;
            --space-12: 3rem;
            --space-16: 4rem;
            
            /* Border Radius */
            --radius-sm: 0.375rem;
            --radius: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            
            /* Shadows */
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            
            /* Transitions */
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* ===== BASE STYLES ===== */
        body {
            font-family: var(--font-primary);
            font-size: var(--font-size-base);
            line-height: 1.6;
            color: var(--dark);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: var(--space-4);
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            position: relative;
        }

        /* ===== HEADER STYLES ===== */
        .header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: var(--space-8) var(--space-6);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
            background-size: cover;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            margin-bottom: var(--space-6);
            position: relative;
            z-index: 1;
        }

        .logo i {
            font-size: var(--font-size-3xl);
            background: rgba(255, 255, 255, 0.2);
            padding: var(--space-3);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(10px);
        }

        .logo h1 {
            font-size: var(--font-size-2xl);
            font-weight: 700;
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        .header-content h2 {
            font-size: var(--font-size-3xl);
            font-weight: 700;
            margin-bottom: var(--space-4);
            line-height: 1.2;
        }

        .header-content p {
            font-size: var(--font-size-lg);
            opacity: 0.9;
            margin-bottom: var(--space-6);
        }

        /* Progress Bar */
        .progress-container {
            background: rgba(255, 255, 255, 0.2);
            padding: var(--space-4);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(10px);
        }

        .progress-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: var(--space-3);
        }

        .progress-fill {
            height: 100%;
            background: white;
            border-radius: var(--radius-lg);
            width: 0%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        #progressText {
            font-size: var(--font-size-sm);
            font-weight: 600;
            display: block;
            text-align: center;
        }

        /* ===== FORM STYLES ===== */
        #websiteForm {
            padding: var(--space-8) var(--space-6);
        }

        .form-step {
            display: none;
            animation: slideIn 0.5s ease-out;
        }

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

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

        .step-header {
            display: flex;
            align-items: center;
            gap: var(--space-4);
            margin-bottom: var(--space-8);
            padding-bottom: var(--space-4);
            border-bottom: 2px solid var(--light-2);
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: var(--font-size-lg);
            box-shadow: var(--shadow-md);
        }

        .step-header h3 {
            font-size: var(--font-size-2xl);
            font-weight: 600;
            color: var(--dark);
        }

        /* Form Groups */
        .form-group {
            margin-bottom: var(--space-6);
        }

        .form-group label {
            display: block;
            margin-bottom: var(--space-3);
            font-weight: 600;
            color: var(--dark);
            font-size: var(--font-size-lg);
        }

        .form-group label.required::after {
            content: ' *';
            color: var(--error);
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="tel"],
        .form-group input[type="url"],
        .form-group input[type="date"],
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: var(--space-4);
            border: 2px solid var(--light-2);
            border-radius: var(--radius);
            font-size: var(--font-size-base);
            font-family: var(--font-primary);
            transition: var(--transition);
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
        }

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

        /* Checkbox and Radio Groups */
        .checkbox-group,
        .radio-group {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            margin-bottom: var(--space-3);
            padding: var(--space-3);
            border-radius: var(--radius);
            transition: var(--transition);
            cursor: pointer;
        }

        .checkbox-group:hover,
        .radio-group:hover {
            background: var(--light);
        }

        .checkbox-group input[type="checkbox"],
        .radio-group input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: var(--primary);
        }

        .checkbox-group label,
        .radio-group label {
            margin-bottom: 0;
            font-weight: 500;
            cursor: pointer;
            flex: 1;
        }

        /* Two Column Layout */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4);
        }

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

        /* File Upload */
        .form-group input[type="file"] {
            width: 100%;
            padding: var(--space-3);
            border: 2px dashed var(--light-2);
            border-radius: var(--radius);
            background: var(--light);
            transition: var(--transition);
        }

        .form-group input[type="file"]:hover {
            border-color: var(--primary);
            background: rgba(67, 97, 238, 0.05);
        }

        .form-group small {
            display: block;
            margin-top: var(--space-2);
            color: var(--gray);
            font-size: var(--font-size-sm);
        }

        /* Privacy Notice */
        .privacy-notice {
            background: var(--light);
            padding: var(--space-4);
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            margin: var(--space-6) 0;
        }

        /* ===== BUTTON STYLES ===== */
        .step-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: var(--space-8);
            padding-top: var(--space-6);
            border-top: 2px solid var(--light-2);
        }

        .btn-prev,
        .btn-next,
        .btn-submit {
            padding: var(--space-4) var(--space-6);
            border: none;
            border-radius: var(--radius);
            font-size: var(--font-size-base);
            font-weight: 600;
            font-family: var(--font-primary);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: var(--space-3);
        }

        .btn-prev {
            background: var(--light);
            color: var(--gray);
            border: 2px solid var(--light-2);
        }

        .btn-prev:hover {
            background: var(--light-2);
            border-color: var(--gray-light);
        }

        .btn-next,
        .btn-submit {
            background: var(--primary);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-next:hover,
        .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-next:active,
        .btn-submit:active {
            transform: translateY(0);
        }

        .btn-next:disabled {
            background: var(--gray-light);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* ===== COMPLETION MESSAGE ===== */
        .completion-message {
            text-align: center;
            padding: var(--space-16) var(--space-6);
            background: white;
            border-radius: var(--radius-xl);
        }

        .success-icon {
            font-size: var(--font-size-4xl);
            color: var(--success);
            margin-bottom: var(--space-6);
        }

        .success-icon i {
            animation: bounceIn 1s ease-out;
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .completion-message h2 {
            font-size: var(--font-size-3xl);
            color: var(--dark);
            margin-bottom: var(--space-4);
            font-weight: 700;
        }

        .completion-message p {
            font-size: var(--font-size-lg);
            color: var(--gray);
            margin-bottom: var(--space-4);
            line-height: 1.6;
        }

        .completion-message a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .completion-message a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* ===== FOOTER STYLES ===== */
        .footer {
            background: var(--dark);
            color: white;
            padding: var(--space-8) var(--space-6);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-6);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            font-size: var(--font-size-lg);
            font-weight: 600;
        }

        .footer-logo i {
            color: var(--primary-light);
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: var(--space-2);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            font-size: var(--font-size-sm);
        }

        .footer-contact a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-contact a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            border-top: 1px solid var(--dark-2);
            padding-top: var(--space-4);
            text-align: center;
            font-size: var(--font-size-sm);
            color: var(--gray-light);
        }

        /* ===== NOTIFICATION SYSTEM ===== */
        .notification-container {
            position: fixed;
            top: var(--space-4);
            right: var(--space-4);
            z-index: 1000;
            max-width: 400px;
        }

        .notification {
            background: white;
            border-radius: var(--radius);
            padding: var(--space-4);
            margin-bottom: var(--space-3);
            box-shadow: var(--shadow-xl);
            border-left: 4px solid var(--primary);
            display: flex;
            align-items: flex-start;
            gap: var(--space-3);
            animation: slideInRight 0.3s ease-out;
            transform: translateX(0);
            transition: var(--transition);
        }

        .notification.hiding {
            transform: translateX(100%);
            opacity: 0;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .notification-icon {
            font-size: var(--font-size-xl);
            flex-shrink: 0;
        }

        .notification.success {
            border-left-color: var(--success);
        }

        .notification.success .notification-icon {
            color: var(--success);
        }

        .notification.error {
            border-left-color: var(--error);
        }

        .notification.error .notification-icon {
            color: var(--error);
        }

        .notification.warning {
            border-left-color: var(--warning);
        }

        .notification.warning .notification-icon {
            color: var(--warning);
        }

        .notification.info {
            border-left-color: var(--primary);
        }

        .notification.info .notification-icon {
            color: var(--primary);
        }

        .notification-content {
            flex: 1;
        }

        .notification-title {
            font-weight: 600;
            margin-bottom: var(--space-1);
            color: var(--dark);
        }

        .notification-message {
            color: var(--gray);
            font-size: var(--font-size-sm);
        }

        .notification-close {
            background: none;
            border: none;
            color: var(--gray-light);
            cursor: pointer;
            padding: var(--space-1);
            border-radius: var(--radius-sm);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .notification-close:hover {
            color: var(--gray);
            background: var(--light);
        }

        /* ===== COUNTDOWN STYLES ===== */
        .countdown-container {
            background: var(--light);
            padding: var(--space-4);
            border-radius: var(--radius);
            margin: var(--space-4) 0;
            text-align: center;
            border-left: 4px solid var(--warning);
        }

        .countdown-timer {
            font-size: var(--font-size-2xl);
            font-weight: 700;
            color: var(--warning);
            margin: var(--space-2) 0;
        }

        .countdown-actions {
            display: flex;
            gap: var(--space-3);
            justify-content: center;
            margin-top: var(--space-3);
        }

        .btn-cancel {
            background: var(--light);
            color: var(--gray);
            border: 2px solid var(--light-2);
            padding: var(--space-2) var(--space-4);
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-cancel:hover {
            background: var(--light-2);
            border-color: var(--gray-light);
        }

        .btn-edit {
            background: var(--primary);
            color: white;
            border: none;
            padding: var(--space-2) var(--space-4);
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-edit:hover {
            background: var(--primary-dark);
        }

        /* ===== PREVIEW STYLES ===== */
        .preview-section {
            background: var(--light);
            padding: var(--space-4);
            border-radius: var(--radius);
            margin-bottom: var(--space-4);
            border-left: 4px solid var(--primary);
        }

        .preview-section h3 {
            color: var(--primary);
            margin-bottom: var(--space-3);
            font-size: var(--font-size-lg);
        }

        .preview-section p {
            margin-bottom: var(--space-2);
            display: flex;
        }

        .preview-section strong {
            min-width: 150px;
            color: var(--dark);
        }

        /* ===== LOADING STATES ===== */
        .loading {
            position: relative;
            pointer-events: none;
            opacity: 0.7;
        }

        .loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid var(--light-2);
            border-top: 2px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            body {
                padding: var(--space-2);
                background: white;
            }
            
            .container {
                border-radius: var(--radius-lg);
            }
            
            .header {
                padding: var(--space-6) var(--space-4);
            }
            
            .logo {
                flex-direction: column;
                text-align: center;
                gap: var(--space-2);
            }
            
            .logo h1 {
                font-size: var(--font-size-xl);
            }
            
            .header-content h2 {
                font-size: var(--font-size-2xl);
            }
            
            #websiteForm {
                padding: var(--space-6) var(--space-4);
            }
            
            .step-header {
                flex-direction: column;
                text-align: center;
                gap: var(--space-3);
            }
            
            .step-header h3 {
                font-size: var(--font-size-xl);
            }
            
            .footer-content {
                flex-direction: column;
                gap: var(--space-4);
                text-align: center;
            }
            
            .step-actions {
                flex-direction: column;
                gap: var(--space-4);
            }
            
            .btn-prev,
            .btn-next,
            .btn-submit {
                width: 100%;
                justify-content: center;
            }
            
            .notification-container {
                left: var(--space-2);
                right: var(--space-2);
                max-width: none;
            }
        }

        @media (max-width: 480px) {
            .header-content h2 {
                font-size: var(--font-size-xl);
            }
            
            .step-header h3 {
                font-size: var(--font-size-lg);
            }
            
            .form-group label {
                font-size: var(--font-size-base);
            }
        }

        /* ===== ACCESSIBILITY ===== */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles for keyboard navigation */
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --primary: #0000ff;
                --dark: #000000;
                --light: #ffffff;
            }
        }

        /* Print styles */
        @media print {
            .header,
            .footer,
            .step-actions,
            .notification-container {
                display: none;
            }
            
            .container {
                box-shadow: none;
                border-radius: 0;
            }
            
            body {
                background: white;
                padding: 0;
            }
        }