.section-ml {
   background-color: #E6FBFF;
    padding: 54px 0 90px;
}

.section-ml__container {
    padding: 0 16px;
}

.ml__title {
    text-align: center;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 28px;
    line-height: 1.28;
    color: #000000;
    padding: 0;
}

.ml__subtitle {
    text-align: center;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.28;
    color: #000000;
    padding: 0;
}

.ml__checklist {
    border: 1px solid #000;
    max-width: 574px;
    width: 100%;
    margin: 49px auto 0;
    border-radius: 18px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    padding: 38px 16px 30px;
    color: #000000;
}

.ml__checklist > p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 40px;
    line-height: normal;
}

.ml__checklist > p::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIxIDcuMDAwMDlMOSAxOS4wMDAxTDMuNSAxMy41MDAxTDQuOTEgMTIuMDkwMUw5IDE2LjE3MDFMMTkuNTkgNS41OTAwOUwyMSA3LjAwMDA5WiIgZmlsbD0iYmxhY2siLz4KPHBhdGggZD0iTTIxIDcuMDAwMDlMOSAxOS4wMDAxTDMuNSAxMy41MDAxTDQuOTEgMTIuMDkwMUw5IDE2LjE3MDFMMTkuNTkgNS41OTAwOUwyMSA3LjAwMDA5WiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==");
}

.ml__button-wrapper {
    text-align: center;
    margin-top: 54px;
}

.ml__button {
    background-color: #013259;
    padding: 20px 38px;
    color: #fff;
    border-radius: 9999px;
    display: inline-block;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 20px;
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

.ml__button:hover {
    opacity: 0.7;
}

@media screen and (max-width: 767px) {
    .section-ml {
        padding: 40px 0;
    }

    .ml__title {
        font-size: 22px;
    }

    .ml__subtitle {
        font-size: 18px;
    }

    .ml__checklist {
        margin: 40px auto 0;
        font-size: 16px;
        padding: 30px 12px 24px;
    }

    .ml__checklist > p {
        gap: 12px;
        padding-bottom: 32px;
    }

    .ml__checklist > p::before {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .ml__button-wrapper {
        margin-top: 40px;
    }

    .ml__button {
        padding: 20px 16px;
        font-size: 16px;
    }
}