* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #eff1f5; /* Base */
    color: #4c4f69; /* Text */
    padding: 20px;
}

h1 {
    text-align: center;
    color: #4c4f69; /* Text */
    margin-bottom: 20px;
    font-size: 2.5em;
}

#product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0;
}

.product-item {
    background-color: #dce0e8; /* White background for product cards */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-item h2 {
    font-size: 1.5em;
    color: #5c5f77; /* Flamingo */
    margin-bottom: 10px;
}

.product-item p {
    font-size: 1em;
    margin-bottom: 10px;
}

.product-item p strong {
    color: #04a5e5; /* Red */
}

.product-item a {
    text-decoration: none;
    color: #5c5f77;
    font-weight: bold;
    transition: color 0.3s ease;
}

.product-item a:hover {
    color: #1e66f5; /* Maroon */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .product-item {
        padding: 15px;
    }

    .product-item h2 {
        font-size: 1.3em;
    }

    .product-item p {
        font-size: 0.9em;
    }
}
