.hero-section--simple {
    max-width: 848px;
}

.offers-container {
    width:100%;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content: center;
    gap:48px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.offer-card {
    background-color: rgba(46,46,46,.45);
    border-radius:12px;
    width:350px;
    height:550px;
    display:flex;
    flex-direction: column;
    align-items: center;

    @media screen and (max-width:360px) {
        width:300px;
    }
}

.offer-card__title {
    font-size:28px;
    margin:0;
}

.offer-card__header {
    width:100%;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:16px;
    padding:32px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);

}

.offer-card__pricing {
    width:100%;
    font-size:36px;
    font-weight: bold;
    text-align: center;
    margin:0;

    >span {
        font-size:16px;
        font-weight:400;
    }
}

.offer-card__options {
    list-style: none;
    padding:0;
    margin-bottom:32px;
}

.offer-card__option {
    padding:8px 0;
}