body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f0f0f0;
    padding: 20px;
}
.project-showcase {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: left;
}
.product-card {
    width: 300px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.product-card .image-container {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}
.product-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card .glossy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.4) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 51%,
        rgba(255,255,255,0) 100%
    );
    border-radius: 20px 20px 0 0;
}
.product-card .content {
    padding: 15px;
}
.product-card span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.product-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

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