.section-report-system {
    margin: 100px 0;
}

.report-system-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.report-text {
    flex: 1 1 50%;
}

.report-text h2 {
    margin-bottom: 22px;
    text-transform: uppercase;
}

.report-features {
    list-style: none;
    padding: 0;
    margin: 42px 0;
}

.report-features li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 18px;
}

.report-features .icon {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 10px;
}

.report-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    flex: 1 1 40%;
    text-align: center;
    position: relative;
}

.report-download .report-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.button-download {
    position: relative;
}

@media (max-width: 768px) {
    .report-system-wrapper {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 60px;
        flex-direction: column;
    }
    .report-features li {
        font-size: 14px;
    }
    .report-subtext {
        text-align: center;
    }
}