.offer {
    padding: 32px 20px 32px 20px;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 24px;
}

.offer__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.offer__header-title {
    font-family: "BalsamqSansBold", sans-serif;
    font-size: 30px;
}

.offer-link {
    font-family: "Onest", sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: #16A34A;
    cursor: pointer;
}

.offer__section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.offer__section-header {
    font-family: "BalsamqSansBold", sans-serif;
    font-size: 20px;
    text-decoration: none;
}

.offer__section-text {
    font-family: "Onest", sans-serif;
    font-size: 16px;
    color: #333;
}

.offer__section-list {
    padding: 15px;
}

@font-face {
    font-family: "Onest";
    src: url("/fonts/Onest-VariableFont_wght.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "BalsamqSansBold";
    src: url("/fonts/BalsamiqSans-Bold.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "BalsamqSans";
    src: url("/fonts/BalsamiqSans-Regular.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@media (min-width:769px) and (max-width:1024px) {
    .offer {
        padding: 52px 32px 62px 32px;
        gap: 32px;
    }

    .offer__header-title {
        font-size: 38px;
    }
}

@media (min-width:1024px) {
    .offer {
        padding: 52px 32px 92px 32px;
        gap: 32px;
    }

    .offer__header{
        gap: 18px;
    }

    .offer__header-title {
        font-size: 45px;
    }

    .offer__section{
        gap: 18px;
    }
}