
.offer-section {
    padding: 80px 0;
}

.offer-container {
    max-width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* Left Side */
.offer-badge {
    background: #d1fae5;     /* Light Green background */
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #16a34a;          /* Primary Green text */
    border: 1px solid #16a34a22; /* subtle green border */
    display: inline-block;
}


.offer-title {
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0;
}

.offer-desc {
    font-size: 17px;
    text-align: left;
    max-width: 590px;
    line-height: 1.7;
    color: #555;
}

/* Button */
/* Button — Green */
.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 14px 28px;
    background: #16a34a; /* GREEN */
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.offer-btn:hover {
    background: #0f8a3a; /* darker green */
}


.arrow {
    font-size: 20px;
}

/* Right Side */
.offer-right {
    flex: 1;
}

/* Offer Box (Tailwind style converted to CSS) */
.offer-box {
    background: #ffffff;            /* bg-card */
    color: #1a1a1a;                 /* text-card-foreground */
    border: 1px solid #e5e7eb;      /* border */
    border-radius: 12px;            /* rounded-lg */
    padding: 40px;
}

.offer-subtitle {
    /* font-size: 24px;
    font-weight: 700; */
    margin-bottom: 20px;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Tick Icon Style */
.tick-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: #16a34a; /* green */
}
.offer-list li {
    font-size: 17px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
/* Tick Icon — Green */
.offer-list svg {
    stroke: #16a34a !important;
}

/* RESPONSIVE FIX — PERFECT FOR TABLET + MOBILE */

@media (max-width: 1100px) {

    .offer-section {
        padding: 40px 20px;
    }

    .offer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    /* Left side center on mobile */
    .offer-left {
        text-align: center;
    }

    .offer-title {
        font-size: 30px;
    }

    .offer-desc {
        max-width: 100%;
        text-align: center;
        font-size: 16px;
    }

    /* Right side always left-aligned list */
    .offer-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .offer-box {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        text-align: left;
        padding: 30px;
    }

    .offer-list li {
        justify-content: flex-start !important;
        font-size: 16px;
    }
}

/* Mobile <600px */
@media (max-width: 600px) {

    .offer-title {
        font-size: 26px;
    }

    .offer-btn {
        padding: 12px 22px;
        font-size: 15px;
    }

    .offer-box {
        padding: 25px;
    }

    .offer-list li {
        font-size: 15px;
    }
}
