/* ---------- Layout ---------- */
.offer-grid,
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Cards ---------- */
.offer-card,
.benefit {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    flex: 1 1 280px;
    max-width: 320px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover,
.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ---------- Card Titles ---------- */
.offer-card h3,
.benefit h3 {
    color: #264653;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.offer-card h3 i,
.benefit i {
    color: #2a9d8f;
    margin-right: 10px;
    font-size: 1.3rem;
}

/* ---------- Lists ---------- */
.offer-card ul {
    padding-left: 1rem;
}

.offer-card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
}

/* ---------- Benefits ---------- */
.benefit {
    text-align: center;
}

.benefit i {
    font-size: 2rem;
    margin-bottom: 12px;
}

/* ---------- Sections ---------- */
.offer-section,
.benefits-section {
    padding: 60px 20px;
    text-align: center;
}

.offer-section h2,
.benefits-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #264653;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {

    .offer-grid,
    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }

    .offer-card,
    .benefit {
        max-width: 90%;
    }
}