.section-mobile-app {
    margin: 100px 0;
}

.section-mobile-app-inner {
    padding: 50px 95px;
    background-color: #E4EDEB;
    border-radius: 10px;
}

.mobile-app-header {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 44px;
    text-align: center;
}

.mobile-app-header p {
    max-width: 738px;
    margin: 0 auto;
}

.mobile-app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    margin-bottom: 44px;
}

.mobile-app-image img {
    max-width: 100%;
    height: auto;
}

.mobile-app-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 67px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.feature-icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.feature-text h3 {
    margin-bottom: 12px;
}

.mobile-app-cta {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .section-mobile-app {
        margin: 52px 0;
    }
    .section-mobile-app .container {
        padding: 0;
    }
    .mobile-app-content {
        gap: 36px;
    }
    .section-mobile-app-inner {
        padding: 40px 16px;
        background-color: #E4EDEB;
        border-radius: 0;
    }
    .mobile-app-header p {
        max-width: 90%;
        margin: 0 auto;
    }
    .mobile-app-features {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .feature-text h3 {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 24px;
    }
    .feature-text p {
        font-size: 14px;
        line-height: 22px;
    }
    .feature-icon {
        display: flex;
    }
    .feature-icon img {
        width: 70px;
        height: 70px;
        margin-bottom: 0;
    }
}