.offer-section {
    background: #f3f3f3;
    padding: 3rem 0px;
}

.container {
    max-width: 1125px;
    margin: 0 auto;
}

/* GRID */

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* KARTA */

.offer-card {
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* TYTUŁ */

.offer-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.offer-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #f0a763;
    margin-top: 10px;
}

/* TREŚĆ */

.offer-content {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    flex-grow: 1;
}

/* LISTY */

.offer-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.offer-content li {
    margin-bottom: 10px;
}

/* CENA */

.offer-content strong {
    font-weight: 700;
    color: #111;
}

/* BUTTON */

.offer-button {
    margin-top: 25px;
    align-self: flex-start;
    padding: 12px 24px;
    background: #f0a763;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.offer-button:hover {
    background: #cf3c3c;
}



@media (max-width: 900px) {

.offer-grid {
grid-template-columns: 1fr;
}

.offer-card {
padding: 30px;
}

.offer-title {
font-size: 24px;
}

}
