* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.mz168wellcom_container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 20px;
}

.mz168wellcom_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e5eb;
}

.mz168wellcom_header_title {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.mz168wellcom_join_btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 15px;
}

.mz168wellcom_join_btn:hover {
    background-color: #2980b9;
}

.mz168wellcom_companies_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mz168wellcom_company_card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mz168wellcom_company_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mz168wellcom_company_logo {
    width: 50px;
    height: 70px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.mz168wellcom_company_logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.mz168wellcom_company_info {
    flex: 1;
    font-size: 14px;
}

.mz168wellcom_company_name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.mz168wellcom_details_link {
    margin-left: 20px;
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.mz168wellcom_details_link:hover {
    color: #2980b9;
}

.mz168wellcom_details_link i {
    margin-left: 5px;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .mz168wellcom_companies_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mz168wellcom_companies_grid {
        grid-template-columns: 1fr;
    }

    .mz168wellcom_header {
        flex-wrap: wrap;
    }

    .mz168wellcom_header_title {
        margin-right: auto;
    }
}