        .contact_form_section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .wizard_container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            margin: 0 auto;
        }

        .wizard_header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 30px;
            color: white;
            text-align: center;
        }

        .wizard_header h2 {
            margin: 0 0 10px 0;
            font-size: 2rem;
        }

        .wizard_header p {
            margin: 0;
            opacity: 0.9;
        }

        /* Progress Bar */
        .progress_bar {
            display: flex;
            justify-content: space-between;
            padding: 30px 40px;
            background: white;
            position: relative;
        }

        .progress_step {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .step_number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e0e0e0;
            color: #666;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 8px;
            position: relative;
            z-index: 2;
            transition: all 0.3s;
        }

        .progress_step.active .step_number {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            transform: scale(1.1);
        }

        .progress_step.completed .step_number {
            background: #10b981;
            color: white;
        }

        .step_label {
            font-size: 12px;
            color: #666;
            font-weight: 500;
        }

        .progress_step.active .step_label {
            color: #667eea;
            font-weight: 600;
        }

        .progress_line {
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e0e0e0;
            z-index: 1;
        }

        .progress_line_fill {
            height: 100%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transition: width 0.3s;
        }

        /* Form Steps */
        .wizard_body {
            padding: 40px;
        }

        .form_step {
            display: none;
        }

        .form_step.active {
            display: block;
            animation: fadeIn 0.3s;
        }

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

        .step_title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #333;
        }

        .step_description {
            color: #666;
            margin-bottom: 30px;
        }

        /* Department Cards */
        .department_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .department_card {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .department_card:hover {
            border-color: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
        }

        .department_card.selected {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
        }

        .department_icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #667eea;
        }

        .department_name {
            font-weight: 600;
            color: #333;
        }

        /* Form Controls */
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
        }

        .form-group input.error,
        .form-group select.error,
        .form-group textarea.error {
            border-color: #ef4444;
        }

        .error-message {
            color: #ef4444;
            font-size: 13px;
            margin-top: 5px;
            display: none;
        }

        /* Captcha */
        .captcha_box {
            background: #f8f9fa;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            margin-bottom: 20px;
        }

        .captcha_question {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .captcha_input {
            max-width: 150px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.2rem;
        }

        .captcha_refresh {
            margin-top: 10px;
            background: none;
            border: none;
            color: #667eea;
            cursor: pointer;
            font-size: 14px;
            text-decoration: underline;
        }

        /* Buttons */
        .wizard_buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #e0e0e0;
        }

        .btn_wizard {
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 15px;
        }

        .btn_prev {
            background: #e0e0e0;
            color: #666;
        }

        .btn_prev:hover {
            background: #d0d0d0;
        }

        .btn_next {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
        }

        .btn_next:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

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

        #formStatus {
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            display: none;
        }

        #formStatus.success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #10b981;
        }

        #formStatus.error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #ef4444;
        }

        .required {
            color: #ef4444;
        }
