.modern-marketplace-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}

.marketplace-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.marketplace-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.marketplace-container {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.marketplace-content {
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 4rem;
}

.marketplace-heading {
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.marketplace-description {
    color: #fff;
    max-width: 57%;
}



@media (max-width: 991px) {
    
    .marketplace-content {
        width: 60%;
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .modern-marketplace-section {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        margin: 0;
    }
    
    .marketplace-background {
        position: relative;
        height: auto;
        width: 100%;
        object-fit: contain;
        background-color: #fff;
        margin: 0;
    }
    
    .marketplace-overlay {
        display: none;
    }
    
    .marketplace-container {
        position: relative;
        padding: 1rem 0 0;
        background-color: #fff;
        margin: 0 0 1rem;
    }
    
    .marketplace-content {
        width: 100%;
        padding: 0 1.5rem 1rem;
        text-align: center;
        margin: 0;
    }
    
    .marketplace-heading {
        margin-bottom: 0.75rem;
        text-align: center;
        color: #000;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        font-weight: 700;
    }
    
    .marketplace-description {
        max-width: 100%;
        text-align: center;
        color: black;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .marketplace-background {
        height: auto;
        margin: 0;
    }
    
    .marketplace-container {
        padding: 0.75rem 0 0;
        margin: 0 0 1rem;
    }
    
    .marketplace-heading {
        margin-bottom: 0.5rem;
    }
    
    .marketplace-content {
        padding: 0 1rem 0.75rem;
        margin: 0;
    }
    
    .marketplace-description {
        margin-bottom: 0;
    }
}