.elementor-5136 .elementor-element.elementor-element-bcd0103{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5136 .elementor-element.elementor-element-0071c02{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5136 .elementor-element.elementor-element-4cae41a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-7531c6e */.quiz-form {
   max-width: 600px;
   margin: 0 auto;
   padding: 30px;
   direction: rtl;
   background-color: #0E1C54 !important;
   color: white;
   border-radius: 20px;
}

.steps-indicator {
   display: flex;
   justify-content: space-between;
   margin-bottom: 25px;
   position: relative;
   padding: 0 15px;
}

.step-number {
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 50%;
   position: relative;
   z-index: 2;
}

.step-circle {
   width: 35px;
   height: 35px;
   border-radius: 50%;
   background: rgba(255,255,255,0.1);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 8px;
   border: 2px solid rgba(255,255,255,0.3);
   font-weight: bold;
   color: white;
}

.step-text {
   font-size: 15px;
   color: rgba(255,255,255,0.7);
}

.step-number.active .step-circle {
   background: white;
   color: #0E1C54;
   border-color: white;
}

.step-number.active .step-text {
   color: white;
}

.steps-line {
   position: absolute;
   top: 17px;
   left: 50%;
   transform: translateX(-50%);
   width: calc(100% - 120px);
   height: 2px;
   background: rgba(255,255,255,0.15);
}

.step {
   display: none;
   opacity: 0;
   transition: all 0.4s ease;
   min-height: 450px;
   position: relative;
   padding-bottom: 100px;
}

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

.question-block {
   margin-bottom: 30px;
   padding: 25px;
   border-radius: 15px;
   background: rgba(255, 255, 255, 0.03);
}

.question-block p {
   color: white;
   font-size: 18px;
   margin-bottom: 20px;
   font-weight: 500;
   line-height: 1.5;
}

.radio-group {
   display: flex;
   gap: 10px;
   margin-top: 15px;
   width: 100%;
   justify-content: space-between;
}

.radio-option {
   flex: 1;
   max-width: calc(50% - 5px);
}

.radio-option input[type="radio"] {
   display: none;
}

.radio-option label {
   display: block;
   padding: 12px 0;
   background: rgba(255, 255, 255, 0.2) !important;
   color: white !important;
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 8px;
   cursor: pointer;
   text-align: center;
   font-size: 16px;
   font-weight: 500;
   transition: all 0.3s ease;
   width: 100%;
   min-width: 120px;
}

.radio-option label:hover {
   background: rgba(255, 255, 255, 0.3) !important;
}

.radio-option input[type="radio"]:checked + label {
   background: white !important;
   color: #0E1C54 !important;
   border-color: white;
}

.radio-option input[type="radio"]:checked + label::after {
   content: "✓";
   margin-right: 5px;
}

.personal-info {
   margin-top: 35px;
}

.form-field {
   margin-bottom: 20px;
}

.form-field label {
   display: block;
   margin-bottom: 8px;
   color: rgba(255,255,255,0.9);
   font-size: 15px;
}

.checkbox-field {
   display: flex;
   align-items: flex-start;
   gap: 15px;
   margin-bottom: 15px;
   position: relative;
}

.checkbox-field input[type="checkbox"] {
   appearance: none;
   -webkit-appearance: none;
   width: 30px;
   height: 30px;
   min-width: 30px;
   min-height: 30px;
   background-color: white;
   border: 2px solid white;
   border-radius: 5px;
   cursor: pointer;
   position: relative;
}

.checkbox-field input[type="checkbox"]:checked {
   background-color: #0E1C54;
   border-color: white;
}

.checkbox-field input[type="checkbox"]:checked::after {
   content: '✓';
   position: absolute;
   color: white;
   font-size: 20px;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
}

.checkbox-field label {
   color: white;
   margin: 0;
   cursor: pointer;
   font-size: 14px;
   flex: 1;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
   width: 100%;
   padding: 12px 15px;
   background: rgba(255, 255, 255, 0.07);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 10px;
   font-size: 16px;
   color: white;
   transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
   background: rgba(255, 255, 255, 0.12);
   border-color: rgba(255, 255, 255, 0.3);
   outline: none;
}

.buttons-group {
   display: flex;
   justify-content: space-between;
   gap: 15px;
   margin-top: 30px;
   position: relative;
   width: 100%;
}

.nav-btn {
   background: white !important;
   color: #0E1C54 !important;
   padding: 14px 28px;
   border: none;
   border-radius: 10px;
   cursor: pointer;
   font-size: 16px;
   font-weight: 600;
   transition: all 0.3s ease;
   min-width: 120px;
}

.nav-btn.secondary {
   background: transparent !important;
   color: white !important;
}

.nav-btn:hover {
   opacity: 0.9;
}

.nav-btn.secondary:hover {
   background: rgba(255, 255, 255, 0.1) !important;
}

.progress-bar {
   width: 100%;
   height: 6px;
   background: rgba(255,255,255,0.1);
   margin-bottom: 30px;
   border-radius: 3px;
   overflow: hidden;
}

.progress {
   width: 0%;
   height: 100%;
   background: rgba(255,255,255,0.9);
   transition: width 0.4s ease;
}

h2 {
   color: white;
   margin-bottom: 25px;
   font-size: 22px;
   font-weight: 600;
}

@media (max-width: 480px) {
   .quiz-form {
       padding: 20px;
       border-radius: 0;
   }

   .step {
       min-height: 520px;
       padding-bottom: 40px;
   }

   .radio-group {
       gap: 10px;
   }

   .radio-option {
       max-width: 50%;
   }

   .radio-option label {
       padding: 12px 0;
       min-width: unset;
       width: 100%;
   }

   .buttons-group {
       flex-direction: column;
       position: relative;
       gap: 10px;
   }

   .nav-btn {
       width: 100%;
       font-size: 14px !important;
       padding: 10px 15px !important;
   }

   .nav-btn.secondary {
       order: 2;
   }
   
   .checkbox-field {
       gap: 15px;
       padding: 10px 0;
   }

   .checkbox-field input[type="checkbox"] {
       width: 35px;
       height: 35px;
       min-width: 35px;
       min-height: 35px;
   }

   .checkbox-field label {
       font-size: 14px;
       padding: 5px 0;
       line-height: 1.4;
   }
}/* End custom CSS */