.refonte-offers-section {
    padding: 96px 64px 64px 64px;
    background-color: var(--dark-rose, #4A1625);
    background-image: url('/img/refonte/background-lines-dark.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    font-family: var(--font-primary);
    border-radius: 20px;
    margin: 80px auto;
    max-width: 1440px;
}

/* Header */
.offers-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.offers-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.offers-title .highlight {
    color: #E6FFA3;
    /* Lime/Yellow */
    margin-left: 8px;
}

.offers-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

/* Cards */
.offer-card {
    background-color: rgba(255, 255, 255, 0.05);
    /* Slightly transparent for cards */
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.offer-card.highlighted {
    border: 1px solid #E6FFA3;
    /* Yellow Border */
    background-color: rgba(255, 255, 255, 0.08);
    /* Slightly lighter */
}

/* Badge */
.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E6FFA3;
    color: #1A3C34;
    /* Dark green/grey */
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Content */
.offer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content */
    text-align: center;
}

.offer-name {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #FFFFFF;
    /* Yellow/Lime */
}

.offer-desc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    min-height: 72px;
    /* Ensure alignment */
}

/* Features List */
.offer-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
    margin-bottom: 40px;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.offer-features li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-features li span {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 400;
}


/* Bottom Section */
.offer-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.offer-ideal {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.red-dot {
    width: 20px;
    height: 20px;
    /* Removed background/border-radius/box-shadow as it is now an SVG image */
    flex-shrink: 0;
    object-fit: contain;
}

.offer-ideal span {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.4;
}

/* Button */
.btn-offer {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFFFFF;
    color: #1A3C34;
    padding: 6px 6px 6px 20px;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    /* Maintain width 100% for card but style matches green buttons */
}

.btn-offer:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.btn-icon-circle {
    width: 32px;
    height: 32px;
    background-color: #0d3830;
    /* Dark Green Circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-circle img {
    width: 12px;
    height: 12px;
    margin: 0;
    filter: brightness(0) invert(1);
    /* Make arrow white */
}


/* Legal Text */
.offers-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 48px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .refonte-offers-section {
        padding: 64px 24px;
        margin: 40px 16px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        min-height: auto;
    }
}