.header-section {
    display: grid;
    grid-template-columns: 605px 260px;
    justify-content: space-between;
    gap: 20px;
    padding: 60px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 30px;
    width: 100%;
}

.header-section__title {
    font-size: 36px;
    font-weight: 700;
    grid-column: 1 / 2;
    line-height: 1.3;
    color: rgba(0, 0, 0, 1);
    margin: 0;
}

.header-section__description-small {
    font-size: 18px;
    font-weight: 400;
    grid-column: 1 / 2;
    line-height: 1.3;
    color: rgba(0, 0, 0, 1);
    margin: 0;
}

.header-section__description {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    grid-column: 1 / 2;
    color: rgba(0, 0, 0, 1);
    margin: 0;
}

.header-section__button {
    margin-top: 10px;
    grid-column: 1 / 2;
    font-size: 18px;
    height: 60px;
}

.header-section__img {
    grid-column: 2 / 3;
    grid-row: 1 / 5;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1199px) {
    .header-section {
        grid-template-columns: calc(100% - 280px) 260px;
    }
}

@media screen and (max-width: 991px) {

    .header-section__title {
        font-size: 26px;
    }

    .header-section__description {
        font-size: 14px;
        margin-top: 0;
    }

    .header-section__button {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .header-section {
        grid-template-columns: 100%;
    }

    .header-section__img {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .header-section__button {
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .header-section {
        padding: 30px;
    }
}