.elementor-4504 .elementor-element.elementor-element-96e2411{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--border-radius:0px 0px 0px 0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4504 .elementor-element.elementor-element-96e2411:not(.elementor-motion-effects-element-type-background), .elementor-4504 .elementor-element.elementor-element-96e2411 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-4504 .elementor-element.elementor-element-367e99a{--display:flex;--justify-content:center;--align-items:flex-start;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--border-radius:0px 0px 0px 0px;--padding-top:20px;--padding-bottom:20px;--padding-left:0px;--padding-right:0px;}.elementor-4504 .elementor-element.elementor-element-367e99a:not(.elementor-motion-effects-element-type-background), .elementor-4504 .elementor-element.elementor-element-367e99a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-4504 .elementor-element.elementor-element-6283ec3{width:100%;max-width:100%;}.elementor-4504 .elementor-element.elementor-element-6283ec3 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );}.elementor-4504 .elementor-element.elementor-element-c175b20 > .elementor-widget-container{margin:0px 0px 30px 0px;}.elementor-4504 .elementor-element.elementor-element-c175b20.elementor-element{--align-self:center;}body:not(.rtl) .elementor-4504 .elementor-element.elementor-element-c175b20{left:0px;}body.rtl .elementor-4504 .elementor-element.elementor-element-c175b20{right:0px;}.elementor-4504 .elementor-element.elementor-element-c175b20{bottom:0px;}.elementor-4504 .elementor-element.elementor-element-c175b20 img{width:67px;}body.elementor-page-4504:not(.elementor-motion-effects-element-type-background), body.elementor-page-4504 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F5F5F5;}@media(max-width:1024px){.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );}}@media(min-width:768px){.elementor-4504 .elementor-element.elementor-element-96e2411{--width:100%;}.elementor-4504 .elementor-element.elementor-element-367e99a{--width:600px;}}@media(max-width:767px){.elementor-4504 .elementor-element.elementor-element-96e2411{--justify-content:flex-start;--align-items:flex-start;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:15px;--padding-right:15px;}.elementor-4504 .elementor-element.elementor-element-367e99a{--border-radius:0px 0px 0px 0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );}.elementor-4504 .elementor-element.elementor-element-c175b20 > .elementor-widget-container{margin:0px 0px 0px 20px;}.elementor-4504 .elementor-element.elementor-element-c175b20.elementor-element{--align-self:center;}.elementor-4504 .elementor-element.elementor-element-c175b20{text-align:center;}}/* Start custom CSS for html, class: .elementor-element-6283ec3 */.htmlQuiz {
    width: 100%; 
}
.quiz-container {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.progress-bar {
    height: 5px;
    background: #d1d1d6;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.progress {
    height: 100%;
    background: #34c759;
    width: 0;
    transition: width 0.3s ease;
}
.intro, .question, .result {
    display: none;
    text-align: center;
    width: 100%;
}
.active {
    display: block;
}
h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}
h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
p {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 20px;
}
.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}
.option {
    padding: 15px;
    background: #f5f5f7;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.option:hover {
    background: #e5e5ea;
}
.option.selected {
    background: #34c759;
    color: #fff;
}
input[type="number"], input[type="text"] {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d1d1d6;
    border-radius: 12px;
    width: 100%;
    max-width: 200px;
    margin: 10px auto;
}
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.nav-buttons-right {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}
button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.next-btn, .cta-button {
    background: #34c759;
    color: #fff;
}
.next-btn:hover, .cta-button:hover {
    background: #2ea44f;
}
.next-btn:disabled {
    background: #d1d1d6;
    cursor: not-allowed;
}
.back-btn {
    background: #f5f5f7;
    color: #1d1d1f;
}
.back-btn:hover {
    background: #e5e5ea;
}
.restart-btn {
    background: #6e6e73;
    color: #fff;
    margin-top: 10px;
}
.restart-btn:hover {
    background: #5c5c61;
}
.logo {
    width: 80px;
    margin-bottom: 20px;
}
.options.multiple label {
    display: block;
    padding: 10px;
    background: #f5f5f7;
    border-radius: 12px;
    cursor: pointer;
}
.options.multiple input[type="checkbox"] {
    margin-right: 10px;
}
</style>/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-96e2411 */.containerQuizElementor{
     max-width: 600px !important;
     margin: auto;
     margin-top: 70px;
     
}/* End custom CSS */