.fta-marketplace {
    padding: 0;
    position: relative;
}

.marketplace-content {
    display: flex;
    flex-direction: column;
}

/* Marketplace Title Section */
.marketplace-title-section {
    background-color: #ff6b00;
    padding: 20px 0;
    text-align: center;
}

.marketplace-title {
    color: white;
    font-size: 32px;
    margin: 0;
    font-weight: 600;
}

/* Booth Visualization */
.marketplace-visual {
    width: 100%;
}

.booth-illustration {
    width: 100%;
    height: auto;
    display: block;
}

/* Description Section */
.marketplace-description-section {
    background-color: #1e40af;
    padding: 40px;
    text-align: center;
}

.marketplace-description {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.marketplace-description strong {
    color: white;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .marketplace-title {
        font-size: 24px;
    }

    .marketplace-description-section {
        padding: 30px 20px;
    }

    .marketplace-description {
        font-size: 14px;
    }
}