        :root {
            --primary: #014c97;
            --secondary: #059669;
            --error: #e11d48;
            --border: #e2e8f0;
            --sidebar-green: #78be21;
            --sidebar-text: #2d5100;
        }

        /* Responsive Container */
        .form-container {
            display: flex;
            margin: 160px auto 50px;
            width: 95%;
            max-width: 1024px;
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden; /* Ensures border-radius clips children */
        }

        /* Sidebar Styling */
        .info-sidebar {
    width: 35%;
    background: linear-gradient(135deg, #78be21 0%, #5ea31a 100%);
    color: #fff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Decorative Circle Background */
.sidebar-decor {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.sidebar-content { position: relative; z-index: 2; }

.info-sidebar h2 { 
    color: #ffffff; 
    font-size: 1.8rem; 
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 25px;
}

.sub-heading { 
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.95;
    color: #fff;
}

.description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #f0fbdc;
}

/* Stepper List Style */
.stepper-list {
    padding: 0;
    list-style: none;
    margin: 30px 0;
}

.stepper-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stepper-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.step-icon {
    background: #ffffff;
    color: #78be21;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.stepper-list p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.4;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-footer p {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
    color: #fff;
}

/* Responsive Fix */
@media (max-width: 992px) {
    .info-sidebar { width: 100%; padding: 40px; }
    .stepper-list li:hover { transform: none; }
}

        /* Form Panel Styling */
        .form-panel { 
            width: 65%; 
            padding: 40px; 
            background: white; 
        }
        .form-content { max-width: 100%; }

        h3 { color: #1e293b; margin-top: 0; font-size: 1.3rem; }

        .flex-row { display: flex; gap: 20px; }
        .flex-item { flex: 1; }

        .input-box { margin-bottom: 18px; position: relative; }
        label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.85rem; color: #475569; }
        
        input[type="text"], input[type="email"], input[type="number"], input[type="tel"], textarea {
            width: 100%; padding: 12px; border: 2px solid var(--border);
            border-radius: 8px; transition: 0.3s; font-size: 1rem;
        }
        input:focus, textarea:focus { border-color: var(--primary); outline: none; }

        /* Radio Tiles */
        .radio-tile-group { display: flex; gap: 10px; margin-top: 5px; flex-wrap: wrap; }
        .radio-tile { flex: 1; min-width: 110px; position: relative; }
        .radio-tile input { position: absolute; opacity: 0; }
        .tile-label {
            display: block; padding: 12px 5px; border: 2px solid var(--border); border-radius: 8px;
            text-align: center; cursor: pointer; transition: 0.2s; font-weight: 600; font-size: 0.85rem;
            background: #fff;
        }
        .radio-tile input:checked + .tile-label {
            border-color: var(--primary); background: #eff6ff; color: var(--primary);
        }

        #other-input-container { display: none; margin-top: 10px; }

        /* Buttons */
        .btn-wrap { display: flex; gap: 15px; margin-top: 25px; }
        .btn { padding: 14px 25px; border-radius: 8px; font-weight: 700; cursor: pointer; border: none; font-size: 1rem; transition: 0.2s; }
        .btn-next { background: var(--primary); color: white; width: 100%; }
        .btn-prev { background: #f1f5f9; color: #64748b; flex: 1; }
        .btn-submit { flex: 2; background-color: var(--secondary); color: white; }
        
        /* JustValidate Errors */
        .just-validate-error-label { color: var(--error) !important; font-size: 0.75rem; margin-top: 4px; font-weight: 600; }
        .just-validate-error-field { border-color: var(--error) !important; }

        .form-step { display: none; }
        .form-step-active { display: block; animation: fadeIn 0.4s ease; }

        /* Summary */
        .summary-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 15px; margin-top: 20px; }
        .summary-item { 
            display: flex; 
            flex-direction: column;
            gap: 5px;
            padding: 12px 0; 
            border-bottom: 1px solid #e2e8f0; 
        }
        .summary-item:last-child { border-bottom: none; }
        .summary-label { 
            font-weight: 700; 
            color: #64748b; 
            font-size: 0.75rem; 
            text-transform: uppercase; 
            letter-spacing: 0.5px;
        }
        .summary-value { 
            color: #1e293b; 
            font-weight: 600; 
            font-size: 0.95rem; 
            line-height: 1.5;
            word-wrap: break-word;
        }

        /* Success Message */

        #success-msg { display: none; animation: fadeIn 0.5s ease; }

        /* TABLET & MOBILE RESPONSIVE LOGIC */
        @media (max-width: 992px) {
            .form-container { flex-direction: column; margin-top: 100px; width: 90%; }
            .form-panel { width: 100%; padding: 30px; }
        }

        @media (max-width: 600px) {
            .form-container { margin-top: 80px; width: 95%; border-radius: 16px; }
            .flex-row { flex-direction: column; gap: 0; }
            
            /* Stack radios vertically on small phones */
            .radio-tile { min-width: 100%; }
            .radio-tile-group { flex-direction: column; }
            
            /* Summary items already stacked vertically */
            .summary-item { padding: 10px 0; }
            .summary-label { font-size: 0.7rem; }
            .summary-value { font-size: 0.9rem; }
            
            h3 { font-size: 1.15rem; }
            .btn { padding: 12px 15px; font-size: 0.95rem; }
        }

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