.section-dg {
    background-color: #F0F0F0;
    padding: 45px 0 44px;
}

.section-dg__container {
    padding: 0 16px;
}

.dg__title {
    text-align: center;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 32px;
    line-height: 1.625;
    color: #003259;
    padding: 0 0 8px;
}

.dg__subtitle {
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.28;
    color: #003259;
    padding: 0;
}

.dg__iframe {
    max-width: 600px;
    margin: 31px auto 0;
}

.dg__button-wrapper {
    text-align: center;
    margin-top: 42px;
}

.dg__button {
    background-color: #013259;
    padding: 20px 32px;
    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;
    max-width: 391px;
    width: 100%;
}

.dg__button:hover {
    opacity: 0.7;
}

@media screen and (max-width: 767px) {
    .section-dg {
        padding: 40px 0;
    }

    .dg__title {
        font-size: 26px;
    }

    .dg__subtitle {
        font-size: 22px;
    }

    .dg__button-wrapper {
        margin-top: 40px;
    }

    .dg__button {
        max-width: none;
        width: auto;
        padding: 20px 16px;
        font-size: 16px;
    }
}