#welcomeSection {
    width: 100%;
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#welcomeText {
    padding-left: 5%;
    width: 50vw;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

#welcomeTextHeader {
    width: 70%;
    font-size: 48px;
    font-weight: bold;
    color: var(--kia-dark-blue);
    margin-bottom: 32px;
    line-height: 58px;
}

#welcomeTextSubheader {
    width: 70%;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 64px;
    color: var(--kia-dark-blue);
}

#welcomeReel {
    width: 50vw;
    height: 100%;
}

#welcomeReelVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border: 1px solid #e7e8e8; */
    box-sizing: border-box;
}

#browseCategory {
    background-color: var(--kia-dark-blue);
    padding: 80px;
}

#browseCategoryHeader {
    color: var(--kia-polar-white);
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
}

#featuredSection {
    background-color: var(--kia-extra-light-gray);
    padding: 80px;
}

#featuredHeader {
    color: var(--kia-dark-blue);
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
}

.slider-container {
    position: relative;
    width: 100%;
    /* overflow: hidden; */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-62.5%);
    cursor: pointer;
    z-index: 1;
    display: none;
    width: 75px;
    height: 75px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.slider-track-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
}

.slide {
    flex: 0 0 calc((100% - 48px) / 4);
    padding: 24px;
    box-sizing: border-box;
    text-align: center;
    background-color: var(--kia-polar-white);
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
}

.slide:hover .slide-link {
    text-decoration: underline;
    cursor: pointer;
}

#featuredProductsSlider .slide {
    padding-bottom: 48px;
}

#featuredProductsSlider .slide > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide img {
    width: 100%;
}

#featuredProductsSlider .slide img {
    aspect-ratio: 1 / 1;
}

.slide-header {
    color: var(--kia-dark-blue);
    font-size: 20px;
    font-weight: bold;
    margin-top: 16px;
    text-align: left;
}

.slide-header a {
    text-decoration: none;
}

.slide-link {
    color: var(--kia-dark-blue) !important;
    font-size: 14px;
    font-weight: bold;
    margin-top: 8px;
    display: flex;
    align-items: center;
    text-decoration: none;
    text-underline-offset: 4px;
}

.slide-link:hover {
    text-decoration: underline;
    cursor: pointer;
}

.slide-link .icon {
    width: 14px;
    height: 14px;
    margin-left: 4px;
}

.right-arrow-icon, .right-arrow-icon-dark {
    right: -37.5px;
}

.left-arrow-icon, .left-arrow-icon-dark {
    left: -37.5px;
}

.slide-prod-num {
    color: var(--kia-font-dark-gray);
    font-size: 12px;
    margin-top: 6px;
    text-transform: uppercase;
}

.slide-price {
    color: var(--kia-dark-blue);
    font-size: 18px;
    font-weight: bold;
    margin-top: 12px;
}

.slide-pricing {
    color: var(--kia-dark-blue);
    margin-top: 12px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.slide-pricing div:first-of-type {
    font-size: 14px;
    font-weight: bold;
}

.slide-pricing div:nth-of-type(2) {
    font-size: 12px;
}

.slide-pricing div:nth-of-type(2) a {
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: -8px;
    margin-top: 4px;
}

#faqSection {
    width: 100%;
    padding: 75px 50px;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    box-sizing: border-box;
}

#faq {
    width: 45%;
}

#faqHeader {
    color: var(--kia-dark-blue);
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.8px;
}

.faq-item {
    margin: 24px 0;
}

.faq-question {
    font-size: 18px;
    color: var(--kia-dark-blue);
    font-weight: bold;
    border-bottom: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    padding-left: 6px;
    transition: background-color var(--hover-transition-time);
}

.faq-question:hover {
    /* background-color: #f5f5f5; */
    cursor: pointer;
}

.faq-question .icon {
    margin-right: 24px;
}

.faq-answer {
    color: var(--kia-dark-blue);
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    padding: 15px 20px;
    max-height: 500px;
}

#moreFAQBtn {
    display: block;
    width: fit-content;
    margin-top: 48px;
    padding: 12px 42px;
    background-color: var(--kia-midnight-black);
    color: var(--kia-polar-white);
    font-size: 16px;
    text-decoration: none;
    transition: background-color var(--hover-transition-time);
}

#moreFAQBtn:hover {
    background-color: #69727A;
    cursor: pointer;
}

#faqSection img {
    width: 500px;
    height: 500px;
    object-fit: cover;
}

@media only screen and (max-height: 800px) {
    #welcomeTextHeader {
        font-size: 44px;
        margin-bottom: 24px;
    }

    #welcomeTextSubheader {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

@media only screen and (max-width: 1400px) {
    #welcomeText {
        padding-left: 2.5%;
    }

    #welcomeTextHeader {
        width: 70%;
    }

    .slider-arrow {
        width: 60px;
        height: 60px;
    }
}

@media only screen and (max-width: 1250px) {
    #welcomeTextHeader {
        width: 100%;
    }
}

@media only screen and (max-width: 1000px) {
    #welcomeSection {
        flex-direction: column;
        background-color: white;
    }

    #welcomeText {
        padding-right: 2.5%;
    }

    #welcomeText, #welcomeReel {
        width: 100%;
        height: 50%;
        text-align: center;
        align-items: center;
        box-sizing: border-box;
    }

    #welcomeTextHeader {
        width: 100%;
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 16px;
        text-align: left;
    }

    #welcomeTextSubheader {
        width: 100%;
        font-size: 20px;
        line-height: 28px;
        margin: 0;
        text-align: left;
    }

    #browseCategory, #featuredSection, #faqSection {
        padding: 28px;
    }

    #browseCategoryHeader, #featuredHeader, #faqHeader {
        font-size: 28px;
        line-height: 32px;
    }

    .slider-arrow {
        display: none !important;
        width: 40px;
        height: 40px;
    }

    .slider-track {
        flex-direction: column;
        gap: 8px;
    }

    .slide {
        padding: 12px;
        flex: 0 0 calc((100% - 36px) / 4);
        flex-direction: row;
    }

    #featuredProductsSlider .slide {
        padding-bottom: 12px;
    }

    .slide img {
        width: 75px;
        height: 75px;
        align-self: center;
    }

    .slide > div {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: auto;
        margin-left: 12px;
    }

    .slide-header {
        width: 100%;
        font-size: 16px;
        margin: 0;
    }

    .slide-link {
        font-size: 12px;
    }

    .slide-price {
        font-size: 16px;
    }

    #faqSection {
        flex-direction: column;
        background-color: white;
    }

    #faq {
        width: 100%;
    }

    #faqSection img {
        width: 100%;
        height: 400px;
        margin-top: 16px;
    }

    #moreFAQBtn {
        margin: auto;
    }
}

@media only screen and (max-width: 750px) {
    #welcomeText {
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 600px) {
    #welcomeSection {
        height: 70vh;
    }
}