.model-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers the items */
    gap: 20px; /* Adds space between the cards */
    margin-top: 20px;
}

.model-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    width: 300px; /* Set card width */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px; /* Fixed height for uniformity */
}

.model-card h3 {
    font-size: 25;
    margin-bottom: 10px;
}

.model-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.model-card a {
    text-decoration: none;
}
