.discount-section {
    background-color: white;
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.discount-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    /* Removed margin: auto because flex justify-center handles it, but margin: 0 auto is safe */
    margin: 0 auto;
}

.discount-content {
    background-color: #008ba3;
    /* Teal color */
    background: linear-gradient(90deg, #008ba3 0%, #00acc1 100%);
    flex: 1;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    /* Slanted edge */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
}

.discount-text-wrapper {
    max-width: 500px;
}

.discount-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.discount-highlight {
    background-color: white;
    color: #008ba3;
    padding: 2px 10px;
    display: inline-block;
    margin: 2px 0;
}

.discount-btn {
    background-color: white;
    color: #008ba3;
    padding: 15px 30px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    font-size: 1rem;
    border-radius: 2px;
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}

.discount-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.discount-image-container {
    flex: 1;
    position: relative;
    margin-left: -10%;
    /* Pull it behind the clip-path */
    z-index: 1;
}

.discount-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .discount-container {
        flex-direction: column;
    }

    .discount-content {
        clip-path: none;
        /* Remove slant on mobile */
        padding: 40px 20px;
        text-align: center;
    }

    .discount-text-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .discount-image-container {
        margin-left: 0;
        height: 300px;
    }
}