/* Estilos gerais - Versão 1.7 - Cache Busting */

/* ===== FONTES ===== */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Light.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-BoldItalic.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Italic.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-CondensedBlack.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-CondensedBlack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-LightItalic.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-CondensedBold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-CondensedBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-UltraLightItalic.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-UltraLightItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-ThinItalic.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-UltraLight.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-UltraLight.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Thin.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-MediumItalic.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue.woff2') format('woff2'),
        url('../fonts/HelveticaNeue.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ===== VARIÁVEIS E RESET ===== */
:root {
    --primary-color: #FF6924;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
}
.faq-content ul li, .faq-content ol li {
    line-height: 1.2;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== TIPOGRAFIA ===== */
b {
    font-weight: 700;
}

p {
    font-size: 18px;
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 1175px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.big-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* ===== BOTÕES ===== */
.default-button,
.hero-button,
.assist-button {
    margin-top: 20px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    width: auto;
    padding: 10px 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 300;
    font-size: 32px;
    transition: background-color 0.3s ease;
}

.default-button b,
.hero-button b,
.assist-button b {
    font-weight: 700;
}

.default-button:hover,
.hero-button:hover,
.assist-button:hover {
    background-color: #e65c1a;
}

.default-button::after,
.hero-button::after {
    content: '→';
    font-size: 32px;
    transition: transform 0.3s ease;
}

.default-button:hover::after,
.hero-button:hover::after {
    transform: translateX(5px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-image: url(../img/BG-Hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 840px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.hero-section .left-content {
    width: 50%;
    color: #fff;
}

.hero-section .left-content h1 {
    font-size: 62px;
    font-weight: 300;
    line-height: 1;
}

.hero-section .left-content p {
    font-size: 24px;
    font-weight: 300;
    max-width: 500px;
    line-height: 1.2;
    margin-top: 21px;
}

.hero-section .right-content {
    width: 50%;
}

img.hero-wave {
    height: 100%;
    display: block;
    position: absolute;
    right: 0%;
}

.emana-logo {
    max-width: 94px;
    height: auto;
    margin-bottom: 21px;
}

/* ===== DOWNLOAD BUTTONS ===== */
.download-buttons {
    margin-top: 20px;
    max-width: 190px;
    height: auto;
}

.download-buttons a {
    display: inline-block;
    margin-right: 10px;
}

.hero-section .download-buttons {
    display: flex;
}

.hero-section .download-buttons img {
    max-width: 117px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.download-buttons img:hover {
    opacity: 0.8;
}

/* ===== INFO SECTION ===== */
.info-section {
    margin-top: 115px;
}

.info-section .container-fluid {
    width: 100%;
    display: flex;
    gap: 4%;
}

.info-section h1 {
    font-size: 40px;
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 300;
}
ul.step-list b {
    font-weight: 500;
}
.info-section .container-fluid .left-content {
    width: 56%;
}

.info-section .container-fluid .left-content img {
    width: 100%;
}

.info-section .container-fluid .right-content {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-section .container-fluid .right-content > p {
    line-height: 1.2;
    max-width: 80%;
}

/* ===== INFO SLIDER ===== */
.info-slider {
    margin-top: 30px;
    overflow: hidden;
    min-height: 200px;
}

.info-slider .slick-track {
    display: flex;
    align-items: stretch;
    margin: 0 -15px !important;
}

.info-slider .slick-slide {
    margin: 0 15px;
    height: auto;
    display: flex;
}

.info-slider-item {
    border-radius: 25px;
    padding: 40px 20px;
    display: flex !important;
    gap: 20px;
    flex-direction: column;
    text-align: left;
    transition: all 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    height: 100%;
    width: 100%;
}

.info-slider-item.slick-current {
    background: #F8F8F8;
}

.info-slider-item h1 {
    font-size: 24px;
    color: #033826;
    margin: 0;
    margin-bottom: 15px;
    font-weight: 300;
}

.info-slider-item p {
    font-size: 16px;
    color: #000;
    line-height: 1.2;
}

.info-slider-item img {
    max-width: 26px;
    height: auto;
    width: 100%;
    display: block;
}

/* ===== STEP BY STEP SECTION ===== */
.step-by-step-section {
    margin-top: 0;
    background-image: url(../img/BG-Hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-mask-image: url(../img/mascara2.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-image: url(../img/mascara2.png);
    mask-repeat: no-repeat;
    mask-size: cover;
    padding: 230px 0 152px 0;
}

.step-by-step-section .flex {
    display: flex;
    gap: 94px;
    align-items: center;
    justify-content: center;
}

.step-by-step-section h1 {
    font-size: 40px;
    font-weight: 200;
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
}

.step-by-step-section .right-content {
    width: 50%;
    max-width: 443px;
}

.step-by-step-section ul {
    list-style: none;
    padding: 0;
}

.step-by-step-section li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    padding: 0;
    color: white;
    opacity: 0.4;
}

.step-by-step-section li:hover {
    opacity: 0.8;
}

.step-by-step-section li.active {
    opacity: 1;
}

.step-by-step-section li span {
    background-color: transparent;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    margin-right: 43px;
    flex-shrink: 0;
    border: 1px solid #D9D9D9;
}

.step-by-step-section li.active span {
    background-color: #D9D9D9;
    color: #379971;
}

.step-by-step-section li p {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    color: white;
}

.step-image {
    display: none;
    width: 100%;
    height: auto;
}

.step-image.active {
    display: block;
}

/* ===== STEP SLIDER ===== */
.step-slider {
    display: none;
}


/* ===== ASSISTÊNCIA SECTION ===== */
.assistencia-section h1 {
    font-size: 40px;
    font-weight: 300;
    color: var(--primary-color);
}

.assist-line {
    display: flex;
    background: #F8F8F8;
    padding: 30px;
    border-radius: 35px;
    width: 100%;
    margin-bottom: 70px;
}

.assist-line>* {
    width: 50%;
}

.assist-line h1 {
    font-size: 40px;
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 700 !important;
}

.assist-line p {
    font-size: 18px;
    line-height: 1.2;
}

.assist-cards {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 70px;
}

.assist-cards>* {
    flex: 1;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 26px;
    border-radius: 35px;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    color: #033826;
}

/* ===== FAQ SECTION ===== */
section.faq-section {
    margin-top: 84px;
}

.faq-cards {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 55px;
    background: #F8F8F8;
    border-radius: 20px;
    margin-top: 40px;
}

.faq-section h1 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 300;
    line-height: 1.2;
}

.faq-section>.container>p {
    text-align: left;
    margin-bottom: 24px;
    font-size: 18px;
    color: #555;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.faq-dropdown {
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: #f8f9fa;
}

.faq-header h3 {
    font-size: 20px;
    color: #5C5C5C;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.active .faq-header h3 {
    color: var(--primary-color);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon img {
    width: 20px;
    height: 20px;
    filter: saturate(0);
    transform: rotate(180deg);
}

.faq-dropdown.active .faq-icon img {
    filter: saturate(1);
    transform: rotate(0deg);
}

.faq-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    background-color: #f8f9fa;
}

.faq-content p {
    padding: 0;
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    color: #5c5c5c;
    padding-top: 10px;
}

.faq-content p:first-of-type {
    padding-top: 15px;
}

.faq-content ul {
    list-style: outside;
    color: #5c5c5c;
    font-size: 18px;
    margin: 0px 0;
    padding: 0px 0px 0 40px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.faq-content ol {
    list-style: auto;
    color: #5c5c5c;
    font-size: 18px;
    margin: 0px 0;
    padding: 0px 0px 0 40px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.faq-cards hr {
    color: black;
    opacity: 0.1;
    margin: 17px auto;
}

/* ===== SLICK SLIDER STYLES ===== */
.slick-slide {
    opacity: 0.4 !important;
    transition: opacity 0.3s ease;
    visibility: visible !important;
}

.slick-slide.slick-current {
    opacity: 1 !important;
    visibility: visible !important;
}

.slick-slide.slick-center {
    opacity: 1 !important;
    visibility: visible !important;
}

.slick-dots {
    position: unset !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 40px !important;
}

/* Estilo global removido - cada slider terá seu próprio estilo */

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50px;
    border: none;
    background: #ececec !important;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    left: 0;
    right: 0;
}

.slick-dots li.slick-active button {
    background: #626262 !important;
    width: 20px !important;
    transform: translateX(-6px);
}

.slick-dots li button:before {
    display: none;
}

.info-slider.slick-initialized .slick-slide:last-of-type {
    background: linear-gradient(122deg, rgba(59, 157, 116, 1) -15%, rgba(11, 44, 50, 1) 105%);
    color: white;
}

.info-slider.slick-initialized .slick-slide:last-of-type h1 {
    color: white;
}

.info-slider.slick-initialized .slick-slide:last-of-type p {
    color: white;
}

/* ===== UTILITY CLASSES ===== */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

.container-fluid.text-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
    margin-top: 115px;
    margin-bottom: 115px;
}

/* ===== FOOTER ===== */
footer p {
    font-size: 12px;
    margin-top: 100px;
    padding-bottom: 50px;
}

footer .download-buttons {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-top: 100px;
}

footer .default-button {
    margin-top: 0 !important;
    margin-right: 40px;
}

.text-center {
    text-align: center;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 998px) {

    .mobile-padding {
        padding: 0 40px;
    }

    /* Mobile/Tablet Styles */
    p {
        font-size: 16px;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    /* Hero Section */
    .hero-section .container {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        flex-direction: column-reverse;
        align-content: center;
        align-items: center;
    }

    .hero-section .left-content {
        width: 100%;
    }

    .hero-section .right-content {
        width: 100%;
    }

    img.hero-wave {
        height: 100%;
        display: block;
        position: absolute;
        right: -4%;
        top: -7%;
        transform: scaleX(-1) rotate(338deg);
    }

    .default-button::after,
    .hero-button::after {
        content: '→';
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    img.emana-logo.mobile-only {
        margin: auto;
        margin-top: 30px;
        margin-bottom: 37px;
    }

    .hero-section .right-content h1 {
        font-size: 24px;
        font-weight: 300;
        max-width: 500px;
        line-height: 1.2;
        margin-top: 21px;
        color: white;
    }

    a.hero-button {
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        padding: 15px;
    }

    .hero-section .download-buttons {
        display: flex;
        width: 100%;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-direction: row;
        max-width: 100%;
    }

    /* Info Section */
    .info-section .container-fluid {
        display: flex;
        flex-direction: column;
    }

    /* FAQ Section */
    .faq-section h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .faq-header {
        padding: 16px 20px;
    }

    .faq-header h3 {
        font-size: 20px;
        padding-right: 30px;
        line-height: 1.2;
    }

    .faq-content p {
        padding: 0 20px 16px;
    }


    .info-slider-item h1 {
        font-size: 24px !important;
        margin-bottom: 0 !important;
    }

    .info-slider-item p {
        font-size: 16px;
    }


    /* Assist Cards Slider */
    .assist-cards {
        overflow: hidden;
    }

    .assist-cards .slick-slide {
        padding: 0 10px;
    }

    .slick-prev,
    .slick-next {
        width: 35px;
        height: 35px;
        background: var(--primary-color);
        border-radius: 50%;
        z-index: 1;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 18px;
        color: white;
    }

    .slick-prev {
        left: -40px;
    }

    .slick-next {
        right: -40px;
    }

    .step-list {
        display: none;
    }

    .info-section .container-fluid .left-content {
        width: 90% !important;
    }

    .info-section .container-fluid .right-content {
        width: 100%;
    }

    .info-section .container-fluid {
        display: flex;
        flex-direction: column-reverse;
    }


    .assist-line {
        display: flex;
        background: none;
        padding: 0;
        border-radius: 35px;
        width: 100%;
        margin-bottom: 70px;
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .assist-line>* {
        width: 100%;
    }

    .assist-line h1 {
        font-size: 32px;
        font-weight: 300;
    }

    .info-section {
        margin-top: 37px;
    }

    .hero-section .left-content p {
        font-size: 16px;
        font-weight: 300;
        max-width: unset;
        line-height: 1.2;
        margin-top: 40px;
    }
    .assist-cards>* {
        flex: 1;
        background: unset;
        display: flex
    ;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 26px;
        border-radius: 35px;
        text-align: center;
        line-height: 1.2;
        font-weight: 700;
        color: #033826;
    }
    .assist-cards.slick-initialized .slick-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 25px;
        gap: 16px;
        background: #f8f8f8;
        margin: 0 15px;
        border-radius: 25px;
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        justify-content: center;
    }

    .assist-cards.slick-initialized .slick-track {
        display: flex !important;
        align-items: stretch !important;
    }

    .assist-cards.slick-initialized .slick-slide > * {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .assistencia-section h1 {
        font-size: 32px;
        font-weight: 300;
        color: var(--primary-color);
        line-height: 1.2;
        margin-bottom: 37px;
        text-align: center;
    }
    .default-button, .hero-button, .assist-button {
        margin-top: 20px;
        gap: 10px;
        display: inline-flex
    ;
        align-items: center;
        width: auto;
        padding: 10px 30px;
        background-color: var(--primary-color);
        color: #fff;
        text-decoration: none;
        border-radius: 35px;
        font-weight: 300;
        font-size: 20px;
        transition: background-color 0.3s ease;
        text-align: center;
        justify-content: center;
        margin-inline: auto;
    }
    .assist-button {
        margin: auto;
        display: flex
    ;
        max-width: 235px;
        gap: 7px;
    }
    .step-by-step-section .right-content{
        display: none;
    }
    .step-image.active{
        display: none !important;
    }
    .step-by-step-section .flex > *{
        width: 100%;
    }
    .step-slider .slick-slide{
        margin: 0 20px !important;
    }
    .step-slider-item-content {
        display: flex
    ;
        gap: 15px;
        line-height: 1.2;
        color: white;
        margin-bottom: 18px;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .slick-current .step-slider-item-content{
        opacity: 1;
    }
    .step-by-step-section .step-slider-item-content span {
        background-color: #D9D9D9;
        color: #379971;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex
    ;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 24px;
        flex-shrink: 0;
        border: 1px solid #D9D9D9;
    }
    .faq-cards {
        max-width: 100%;
        margin: 0 auto;
        padding: 10px 5px;
        background: #F8F8F8;
        border-radius: 20px;
        margin-top: 79px;
    }
    .mobile-padding-0{
        padding: 0 !important;
    }
    .step-by-step-section {
        margin-top: 50px;
        background-image: url(../img/BG-Hero.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-mask-image: url(../img/mascara-mobile.png);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: cover;
        mask-image: url(../img/mascara-mobile.png);
        mask-repeat: no-repeat;
        mask-size: cover;
        padding: 100px 0 30px 0;
    }
    footer .download-buttons {
        display: flex;
        margin-top: 40px;
        flex-direction: column;
    }
    footer .default-button {
        margin: auto !important;
    }
    .app {
        display: flex
    ;
        max-width: 252px;
        margin-top: 40px;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 10px;
    }
    .download-buttons a {
        display: inline-block;
        margin-right: 0;
    }
    footer p {
        font-size: 10px;
        margin-top: 25px;
        padding-bottom: 50px;
        margin-bottom: 25px;
    }
    .info-slider .slick-track{
        margin: 0 !important;
    }
    .info-slider .slick-slide{
        margin: 0 !important;
    }
    .info-section h1{
        font-size: 32px;
        margin-bottom: 20px;
    }
    .step-by-step-section h1 {
        font-size: 32px;
        font-weight: 200;
        color: white;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .faq-section>.container>p {
        text-align: left;
        margin-bottom: 24px;
        font-size: 16px;
        color: #555;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.2;
    }
    .assist-line p{
        font-size: 16px;
    }
    footer .default-button::after {
        margin-left: 15px;
    }
}

@media (min-width: 998px) {

    /* Desktop Styles */
    .step-slider {
        display: none;
    }

    .step-image {
        display: none;
    }

    .step-image.active {
        display: block;
    }
}