.box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 18px;
}

.card {
    display: flex;
    gap: 15px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 15px;
    text-decoration: none;
    color: #222;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: #f4f6f8;
    padding: 6px;
}

.card-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.card-content p {
    margin: 6px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.card-content span {
    font-size: 13px;
    color: #d00;
    font-weight: 500;
}
.center{
    text-align: center;
}