.etsw-wizard-container {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 50px 30px 30px;
    text-align: center;
    background: #fff;
    border: inherit;
    box-sizing: border-box;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.20);
    border-radius: 30px;
}

.etsw-intro-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.etsw-feature {
    flex: 1;
    background: #faf5ff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.etsw-feature-icon svg {
    width: 35px;
    height: 35px;
}
.etsw-step h3 {
    text-align: left;
    text-transform: none;
}
.etsw-feature .etsw-feature-title {
    font-size: 16px;
    text-transform: none;
    margin: 0;
}

.etsw-start-button {
    transition: background 0.3s;
    font-family: 'TT_Norms_Pro_Bold' !important;
    letter-spacing: 0px;
    font-size: 18px;
    padding: 10px 25px;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 15%);
    background-image: linear-gradient(to right, #f96634 0%, #ef4678 100%);
    background-repeat: repeat-x;
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin: 30px 0 10px 0;
    text-transform: none;
}

.etsw-step p.quiz-question {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    text-transform: none;
    font-weight: 400;
    color: #171717;
    text-align: left;
    font-family: 'TT_Norms_Pro_Bold' !important;
    line-height: 1.3;
    font-size: 30px;
}

.etsw-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.etsw-options label {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 5px;
}

.etsw-options label:hover {
    background: #f5f5f5;
}

.etsw-other-input {
    margin-left: 10px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
span.progress-step {
    color: #F1614B;
    font-weight: 600;
}
.etsw-navigation {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.etsw-navigation button {
    transition: all 0.3s ease;
    font-family: 'TT_Norms_Pro_Bold' !important;
    letter-spacing: 0px;
    font-size: 18px;
    padding: 10px 25px;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 15%);
    background-image: linear-gradient(to right, #f96634 0%, #ef4678 100%);
    background-repeat: repeat-x;
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-transform: none;

}

/* Slide animations */
@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100%); opacity: 0; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.slide-in-left {
    animation: slideInLeft 0.3s forwards;
}

.slide-out-left {
    animation: slideOutLeft 0.3s forwards;
}

.slide-in-right {
    animation: slideInRight 0.3s forwards;
}

.slide-out-right {
    animation: slideOutRight 0.3s forwards;
}

.etsw-navigation {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.etsw-prev {
    background: #f0f0f0;
    color: #333;
}

.etsw-next, .etsw-submit {
    background: #F1614B;
    color: white;
}

.etsw-prev:hover {
    background: #e0e0e0;
}

.etsw-next:hover, .etsw-submit:hover {
    background: #0056b3;
}

.etsw-progress {
    margin-bottom: 20px;
    background: #f0f0f0;
    height: 4px;
    border-radius: 2px;
}

.etsw-progress-bar {
    height: 100%;
    background: #F1614B;
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 9.09%;
}

.etsw-progress-info {
    display: flex;
    justify-content: space-between;
}

.etsw-navigation {
    justify-content: space-between;
}

.etsw-prev {
    display: flex;
    align-items: center;
    gap: 5px;
}

.etsw-prev:before {
    content: "←";
}

.etsw-next, .etsw-submit {
    display: flex;
    align-items: center;
    gap: 5px;
}

.etsw-next:after {
    content: "→";
}

.etsw-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #ccc;
}

.etsw-validation-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.etsw-options label.required-field {
    border-color: #dc3545;
}

.etsw-recommendations {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.etsw-recommendations li {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    border-left: 4px solid #F1614B;
}

.etsw-results h2 {
    color: #F1614B;
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
    text-transform: none;
}

.etsw-recommendation {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
    text-align: left;
}

.etsw-recommendation h3 {
    color: #F1614B;
    margin-bottom: 10px;
    font-size: 20px;
    text-transform: none;
}

.etsw-results .etsw-recommendation p {
    margin-bottom: 20px;
    text-align: left;
    font-size: 16px;
    line-height: 20px;
}

.etsw-learn-more {
    display: inline-flex;
    color: #F1614B !important;
    border: 1px solid #F1614B;
    border-radius: 100px;
    padding: 5px 15px;
    font-family: 'TT_Norms_Pro_Bold' !important;
    letter-spacing: 0px;
    text-transform: none;
    font-size: 16px;
}
.etsw-learn-more:hover {
    color: #F1614B;
}
.etsw-learn-more:after {
    content: "→";
    margin-left: 5px;
}

/* HubSpot Popup Styles */
p.popup-info {
    color: rgb(107 114 128) !important;
    font-size: 12px !important;
    text-align: center;
    margin: 10px 0 0 0;
}
.main-form {
    width: 100%;
}
.main-form form {
    position: relative;
}
.hs_submit.hs-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 3px;
    top: 3px;
}
.main-form form input[type=submit] {
    border-radius: 48px;
    background: var(--Gradient-Gradient-1, linear-gradient(103deg, #f1614b .91%, #f1416b 100%));
    padding: 10px 40px;
    letter-spacing: 0px;
    color: #fff;
    text-transform: inherit !important;
    border: inherit;
}
.main-form form input[type=email] {
    display: flex;
    padding: 10px 12px 11px 24px;
    align-items: center;
    border-radius: 100px;
    border: 1px solid var(--Neutrals-Gray-200, #c2d0dc);
    background: var(--Neutrals-White, #fff);
    min-height: 54px;
}
label#label-email-1ef8ebd7-4ac3-4246-a31a-dae389e19854 {
    display: none;
}
#etsw-hubspot-popup .hs-form {
    max-width: 100%;
}

#etsw-hubspot-popup .hs-form-field {
    margin-bottom: 15px;
}

#etsw-popup-close:hover {
    color: #F1614B;
}

/*Responsive*/
@media only screen and (max-width: 767px) {
.etsw-intro-features {
    display: block;
    margin-bottom: 0;
}
.etsw-feature {
    margin-bottom: 10px;
}
.etsw-wizard-container {
    padding: 20px;
}
.etsw-options label {
    text-align: left;
    line-height: 25px;
}
.header-section-customers span {
    position: initial;
    margin-right: 10px;
}
.etsw-start-button {
    margin-top: 0;
}

#etsw-hubspot-popup > div {
    padding: 20px;
    margin: 10px;
}

#etsw-hubspot-popup h2 {
    font-size: 18px;
}
}