#app-hero {
    background-color: #FFF3A3;
    background-color: #FFF3A3;
    box-sizing: border-box;
    display: flex;
    position: relative;
}

#app-hero > .container {
    display: flex;
    justify-content: space-between;
}
.app-hero__links {
    margin-bottom: 81px;
    display: flex;
    gap: 8px;
}

.app-hero__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0%;
    margin-top: 80px;
    margin-bottom: 16px;
    margin-left: 0;
    white-space: pre-line;
}

.app-hero__subtitle-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 31px;
    white-space: pre-line;
}

.app-hero__subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    margin: 0;
}

.app-hero__image {
    width: 559px;
    position: relative;
}

.app-hero__image-mobile {
    display: none;
}

#app-about {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 44px;
}
.app-about-title {
    font-weight: 600;
    font-size: 33.92px;
    line-height: 38.16px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 24px;
    margin-top: 50px;
}
.app-about-card {
    display: flex;
    justify-content: space-between;
    border-radius: 30px;
    background: #F8F8F8;
    height: 340px;
}

.app-about-text {
    display: flex;
    flex-direction: column;
    margin-top: 56px;
    margin-left: 50px;
}

.app-about__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #039BE6;
    
}
.app-about__subtitle {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0%;
    white-space: pre-line;
}

.app-about__image1 {
    width: 534px;
    object-fit: cover;
}
.app-about__image1-mobile, .app-about__image2-mobile, .app-about__image3-mobile {
    display: none;
}
.app-about__image2 {
    width: 492px;
    object-fit: cover;
}
.app-about__image3 {
    width: 603px;
    object-fit: cover;
}
.app-links__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 16px;
}

.app-links__container {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 52px;
}

@media screen and (max-width: 993px) {
    #app-hero > .container {
        display: flex;
        flex-direction: column;
        justify-content: initial;
        padding: 0;
    }
    .app-hero__links {
        margin: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        gap: 8px;
        position: absolute;
        bottom: 20px;
        z-index: 1;
        justify-content: center;
    }
    .app-hero__links svg {
        width: 120px;
        height: 40px;
    }
    .app-hero__title {
        font-weight: 600;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0%;
        white-space: normal;
        margin-bottom: 12px;
        margin-top: 40px;
        padding: 0 32px;
    }
    
    .app-hero__subtitle-wrapper {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
        white-space: normal;
        padding: 0 32px;
    }
    
    .app-hero__subtitle {
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0%;
        margin: 0;
    }
    .app-hero__image {
        display: none;
    }
    .app-hero__image-mobile {
        width: 100%;
        display: block;
    }
    #app-about {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 36px;
        padding: 0 12px;
    }

    .app-about-title {
        font-weight: 600;
        font-size: 24px;
        line-height: 28px;
        letter-spacing: 0%;
        text-align: center;
        margin-top: 32px;
        margin-bottom: 16px;
    }
    .app-about-card {
        display: flex;
        justify-content: initial;
        flex-direction: column;
        align-items: center;
        border-radius: 24px;
        background: #F8F8F8;
        height: auto;
        padding: 0;
    }
    
    .app-about-text {
        display: flex;
        flex-direction: column;
        margin-left: 0;
        margin-top: 24px;
        gap: 6px;
        max-width: 300px;
    }
    
    .app-about__title {
        font-weight: 600;
        font-size: 24px;
        line-height: 36px;
        letter-spacing: 0%;
        text-align: center;
        margin-bottom: 6px;
        color: #039BE6;
        
    }
    .app-about__subtitle {
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0%;
        text-align: center;
        white-space: normal;
    }
    .app-about__image1, .app-about__image2, .app-about__image3 {
        display: none;
    }
    .app-about__image1-mobile, .app-about__image2-mobile, .app-about__image3-mobile {
        display: block;
        width: 100%;
    }
    .app-about__image2-mobile {
        width: 305px;
        margin-top: 30px;
    }

    .app-about__image3-mobile {
        margin-top: 20px;
    }
}