.our-offer {
    padding: 4.8rem 0;
    background-color: #fcf1fa;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9.6rem;
    justify-items: center;
    font-size: 1.8rem;
}

.offer {
    max-width: 90%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
    transition: all 0.4s;
}

.offer:hover {
    transform: translateY(-1.2rem);
    box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.offer:nth-child(odd) {
    justify-self: end;
}

.offer:nth-child(even) {
    justify-self: start;
}

.offer-img {
    max-width: 100%;
}

.offer-content {
    padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}

.offer-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2.8rem;
}

.offer-description {
    line-height: 1.4;
}

.offer-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.8rem;
    list-style: none;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.offer-list svg {
    flex-basis: 2.4rem;
    flex-shrink: 0;
}