

.contentWrapper {
    display: flex;
    justify-content: center;
    padding: 30px;
    background-color: #f0f0f0;
}

.solutions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Hiển thị 3 item mỗi hàng */
    gap: 20px;
    max-width: 1200px;
}


.solution-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    width: 300px;
}

.solution-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.solution-content {
    padding: 15px;
}

.solution-content h3 {
    font-size: 18px;
    color: #002D5D;
    margin-bottom: 10px;
    font-weight: bold;
}

.solution-content ul {
    list-style: none;
    padding: 0;
}

.solution-content ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.solution-content ul li img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.solution-content h3 a {
    cursor: pointer;
    color: #555;
}