 body {
    background: linear-gradient(113deg, rgba(0, 22, 94, 0.05) 0%, rgba(230, 0, 126, 0.05) 100%);
 }
 /* --- Multi-Step Form Section Styles --- */
 .form-section {
     padding: 7% 5% 3.8% 5%;
     text-align: center;
     /* background: linear-gradient(113deg, rgba(0, 22, 94, 0.05) 0%, rgba(230, 0, 126, 0.05) 100%); */
 }

 .form-section h1 {
     font-size: clamp(.1rem, 2.5vw, 100rem);
     color: #E6007E;
     font-weight: 700;
     margin-bottom: 1.5%;
 }

 .form-section p {
     color: #323031;
     font-size: clamp(.1rem, 1.1vw, 100rem);
     margin-bottom: 1.6%;
 }

 .stepper-form-container {
     max-width: 600px;
     margin: 2rem auto;
     background-color: white;
     border-radius: clamp(.1rem, 2vw, 100rem);
     border: 1px solid #e6007f1e;
     padding: clamp(.1rem, 2.7vw, 100rem);
     box-shadow: 0 4px 20px #e6007f17;
     position: relative;
 }

 .form-step {
     display: none;
     width: 100%;
     transition: opacity 0.5s ease-in-out;
     opacity: 0;
     padding: 1rem 0;
 }

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

 .form-step label {
     display: block;
     text-align: left;
     margin-bottom: 0.5rem;
     color: #374151;
     font-weight: 500;
 }

 /* New rule for adding red asterisk to required labels */
 .form-step label.required-label::after {
     content: " *";
     color: #E6007E;
 }

 .form-step input,
 .form-step textarea {
     width: 100%;
     padding: 0.75rem 1rem;
     border: 1px solid #d1d5db;
     border-radius: 8px;
     box-sizing: border-box;
     margin-bottom: 1.5rem;
     font-size: 1rem;
 }

 .form-step textarea {
     resize: vertical;
     min-height: 100px;
 }

 .form-navigation {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 2rem;
 }

 .nav-button {
     background-color: transparent;
     border: none;
     cursor: pointer;
     padding: 0.5rem;
     color: #00165E;
     display: flex;
     align-items: center;
     font-size: 1rem;
     font-weight: 600;
     gap: 0.5rem;
 }

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

 .submit-button {
     background-color: #E6007E;
     color: white;
     border: none;
     padding: 1rem 2rem;
     border-radius: 9999px;
     font-size: 1rem;
     font-weight: 500;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }

 .submit-button:hover {
     background-color: #c9006b;
 }

 .arrow-icon {
     width: 24px;
     height: 24px;
     fill: currentColor;
 }

 /* Media Queries for responsiveness */
 @media (max-width: 768px) {
     .stepper-form-container {
         width: 100%;
         padding: 2rem 1rem 1rem;
     }

     .form-section h1 {
         font-size: clamp(.1rem, 8vw, 100rem);
         color: #E6007E;
         font-weight: 700;
         margin-bottom: 8%;
     }

     .form-section p {
         color: #323031;
         font-size: clamp(.1rem, 4vw, 100rem);
         margin-bottom: 10%;
     }

     .form-section {
         padding-top: 15%;
         padding-bottom: 15%;
     }

     .stepper-form-container {
         border-radius: clamp(.1rem, 5vw, 100rem);
     }
 }