/* Start custom CSS */.card {
    background-color: #ffffff; /* Background color of the card */
    border: 1px solid #ddd; /* Border color */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 180px; /* Fixed height for images */
    border-radius: 10px; /* Added to match card border-radius */
}

.card-info {
    padding: 15px;
    text-align: center;
    
}

.card-info h3 {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold; /* Make the font bold */
    
}

.card-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}

.card-info a {
    color: #0066cc;
    text-decoration: none;
; /* Make the link text bold if desired */
    
}

.card-info a:hover {
    text-decoration: underline;
}/* End custom CSS */