.offer-card-container {
    position: relative;
    width: 100%;
    height: 250px;
    color: #fff;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-color 0.3s ease;
}

.offer-card-container .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: inherit;
    transition: background-color 0.3s ease;
}

.offer-card-container .content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.offer-card-container .content span {
    margin-bottom: 5px;
    display: block;
}

.offer-card-container .content h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    transition: transform 0.3s ease;
}

.offer-card-container:hover .overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.offer-card-container .content button {
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.offer-card-container .content button img {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.offer-card-container .content button:hover img {
    transform: translateX(5px);
}
