.offer {
    padding: 6rem 0 ;
    background-color: #ffffff;
}

.offer-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer-image {
    /* flex: 0 0 400px; */
}

.offer-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.offer-content {
    flex: 1;
}

.offer-title {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.offer-text {
    /* font-size: 1.1rem; */
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.custom-btn {
    background-color: var(--primary-color);
    color: white;
    
    border-radius: 25px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    transition: color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.custom-btn:hover {
    color: #333;
    background: #ff9800;
}


@media (min-width: 992px) {
    .offer-container {
        flex-direction: row-reverse;
    }

    .offer-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }

    .offer-image img {
        height: 500px;
    }
}