 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
 }

 body {
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 100vh;
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     padding: 20px;
     color: #333;
 }

 .container {
     width: 100%;
     max-width: 900px;
     margin: 0 auto;
 }

 .form-card {
     background: white;
     border-radius: 24px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
     overflow: hidden;
     padding: 40px;
     position: relative;
 }

 .form-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .form-header h1 {
     font-size: 2.8rem;
     font-weight: 700;
     background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     margin-bottom: 10px;
 }

 .form-header p {
     color: #666;
     font-size: 1.1rem;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 /* Progress Bar Styles */
 .progress-container {
     margin-bottom: 50px;
 }

 .progress-steps {
     display: flex;
     justify-content: space-between;
     position: relative;
     margin-bottom: 10px;
     counter-reset: step;
 }

 .progress-steps::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 0;
     transform: translateY(-50%);
     height: 4px;
     width: 100%;
     background-color: #e8e8e8;
     z-index: 1;
     border-radius: 2px;
 }

 .progress-bar {
     position: absolute;
     top: 50%;
     left: 0;
     transform: translateY(-50%);
     height: 4px;
     width: 0%;
     background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
     z-index: 2;
     border-radius: 2px;
     transition: width 0.5s ease;
 }

 .step {
     width: 40px;
     height: 40px;
     background-color: white;
     border: 4px solid #e8e8e8;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     font-weight: 700;
     color: #999;
     z-index: 3;
     position: relative;
     transition: all 0.4s ease;
 }

 .step.active {
     border-color: #4b6cb7;
     background-color: #4b6cb7;
     color: white;
     transform: scale(1.1);
     box-shadow: 0 0 0 6px rgba(75, 108, 183, 0.2);
 }

 .step.completed {
     border-color: #4b6cb7;
     background-color: #4b6cb7;
     color: white;
 }

 .step::after {
     content: attr(data-title);
     position: absolute;
     top: 50px;
     font-size: 0.85rem;
     color: #666;
     font-weight: 600;
     white-space: nowrap;
     text-align: center;
     width: 80px;
     left: 50%;
     transform: translateX(-50%);
 }

 .step.active::after {
     color: #4b6cb7;
 }

 /* Form Styles */
 .form-content {
     display: none;
     animation: fadeIn 0.5s ease;
 }

 .form-content.active {
     display: block;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: #444;
     font-size: 1rem;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 16px 20px;
     border: 2px solid #e8e8e8;
     border-radius: 12px;
     font-size: 1rem;
     transition: all 0.3s;
     background-color: #fafafa;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: #4b6cb7;
     background-color: white;
     box-shadow: 0 5px 15px rgba(75, 108, 183, 0.1);
 }

 .form-row {
     display: flex;
     gap: 20px;
 }

 .form-row .form-group {
     flex: 1;
 }

 /* Button Styles */
 .button-group {
     display: flex;
     justify-content: space-between;
     margin-top: 40px;
     padding-top: 30px;
     border-top: 1px solid #eee;
 }

 .btn {
     padding: 16px 32px;
     border-radius: 12px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
     border: none;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .btn-prev {
     background-color: #f0f0f0;
     color: #666;
 }

 .btn-prev:hover {
     background-color: #e0e0e0;
 }

 .btn-next {
     background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
     color: white;
 }

 .btn-next:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(75, 108, 183, 0.3);
 }

 .btn-submit {
     background: linear-gradient(90deg, #2E8B57 0%, #3CB371 100%);
     color: white;
 }

 .btn-submit:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(46, 139, 87, 0.3);
 }

 /* Success Message */
 .success-message {
     text-align: center;
     padding: 40px 20px;
     display: none;
 }

 .success-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0 auto 30px;
     color: white;
     font-size: 2.5rem;
 }

 .success-message h2 {
     font-size: 2.2rem;
     color: #2E8B57;
     margin-bottom: 15px;
 }

 .success-message p {
     color: #666;
     font-size: 1.1rem;
     max-width: 500px;
     margin: 0 auto 30px;
     line-height: 1.6;
 }

 /* Step Numbers for Smaller Screens */
 .step-number {
     display: none;
     font-size: 0.8rem;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .form-card {
         padding: 30px 20px;
     }

     .form-header h1 {
         font-size: 2.2rem;
     }

     .form-row {
         flex-direction: column;
         gap: 0;
     }

     .step::after {
         font-size: 0.75rem;
         width: 70px;
     }

     .step i {
         font-size: 0.9rem;
     }

     .step-number {
         display: block;
     }

     .step-label {
         display: none;
     }
 }

 @media (max-width: 576px) {
     .step::after {
         font-size: 0.7rem;
         width: 60px;
     }

     .step {
         width: 36px;
         height: 36px;
     }

     .btn {
         padding: 14px 24px;
         font-size: 0.95rem;
     }
 }

 @media (max-width: 480px) {
     .step::after {
         font-size: 0.65rem;
         width: 55px;
     }

     .step {
         width: 32px;
         height: 32px;
     }

     .step i {
         font-size: 0.8rem;
     }

     .button-group {
         flex-direction: column;
         gap: 15px;
     }

     .btn-prev,
     .btn-next,
     .btn-submit {
         justify-content: center;
         width: 100%;
     }
 }

 /* Design elements */
 .decoration {
     position: absolute;
     border-radius: 50%;
     z-index: 0;
 }

 .decoration-1 {
     width: 300px;
     height: 300px;
     background: linear-gradient(135deg, rgba(75, 108, 183, 0.05) 0%, rgba(24, 40, 72, 0.05) 100%);
     top: -150px;
     right: -150px;
 }

 .decoration-2 {
     width: 200px;
     height: 200px;
     background: linear-gradient(135deg, rgba(75, 108, 183, 0.05) 0%, rgba(24, 40, 72, 0.05) 100%);
     bottom: -100px;
     left: -100px;
 }

 .m-plus-rounded-1c-regular {
     font-family: "Rubik", sans-serif;
     font-optical-sizing: auto;
     font-weight: <weight>;
     font-style: normal;
 }


 .profile-upload-section {
     display: flex;
     flex-direction: column;
     align-items: center;
     margin-bottom: 25px;
     padding: 15px;
     background: #f8fbff;
     border-radius: 15px;
     border: 1px dashed #4b6cb7;
 }

 .image-preview-container {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     border: 3px solid #4b6cb7;
     overflow: hidden;
     display: flex;
     justify-content: center;
     align-items: center;
     background: #eee;
     margin-bottom: 10px;
     position: relative;
 }

 .image-preview-container img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .image-preview-container i {
     font-size: 3rem;
     color: #ccc;
 }

 .upload-btn {
     background: #4b6cb7;
     color: white;
     padding: 8px 15px;
     border-radius: 20px;
     cursor: pointer;
     font-size: 0.85rem;
     transition: 0.3s;
 }

 .upload-btn:hover {
     background: #182848;
 }

 /* Summary Specific Styles */
 .summary-header {
     display: flex;
     align-items: center;
     gap: 20px;
     padding-bottom: 15px;
     margin-bottom: 15px;
     border-bottom: 1px solid #ddd;
 }

 .summary-header img {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid #4b6cb7;
 }