.offers {
    padding: 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offers .container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.offers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    flex: 1;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.offer-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.5s ease;
    overflow: visible;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 900px;
    border: 3px solid rgba(117, 59, 125, 0.1);
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: auto;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.offer-image {
    width: auto;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 780px;
}

.offer-img {
    width: auto;
    height: auto;
    max-width: 85%;
    max-height: 760px;
    object-fit: contain;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.offer-card:hover .offer-img {
    transform: scale(1.05);
}

.offers-contact {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.offers-contact .btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(117, 59, 125, 0.4);
}

.offers-contact .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(117, 59, 125, 0.6);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .offers-grid {
        gap: 1.5rem;
    }

    .offer-card {
        padding: 1.5rem;
    }

    .offers-contact {
        margin-top: 3rem;
    }

    .offers-contact .btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .offers {
        padding: 4rem 1rem;
    }

    .offers-grid {
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .offer-card {
        padding: 1.2rem;
    }
}
