.wholesale-sections {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.wholesale-section {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wholesale-section h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    font-family: Arial, sans-serif;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wholesale-image {
    margin-bottom: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wholesale-image img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 2px solid #fff;
    object-fit: cover;
}

.wholesale-button {
    margin-top: 15px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .wholesale-sections {
        flex-direction: column;
        align-items: center;
    }
    
    .wholesale-section {
        max-width: 100%;
        height: auto;
    }
    
    .wholesale-section h2 {
        min-height: auto;
    }
}

