.whatweoffer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* box-shadow: 0 1px 2px 0 #d9d9d9; */
    box-shadow: 0 1px 2px 0 #efefef;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);

}

.offer-item:hover .offer-icon {
    background-color: #248a9d; /* Green */
    color: #fff;
}

.offer-item:hover .offer-title {
    color: #248a9d; /* Green */
}

.offer-item:hover .offer-btn {
    background-color: #248a9d; /* Green */
    color: #fff;
    border-color: #248a9d;
}

.offer-icon {
    font-size: 2rem;
    color: #131B25;
    margin-bottom: 1rem;
    background: #effafa;
    padding: 10px;
    border-radius: 10px;
    width: 4rem;
    height: 4rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.offer-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.offer-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.25rem;
}

.offer-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #131B25;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: 1px solid #dae0e7;
    font-size: 0.85rem;
}

.offer-btn:hover {
    background-color: #0056b3;
}