   .main {
        background-color: white;
        padding: 20px;
    }
    .section {
        text-align: center;
        margin-bottom: 20px;
    }
    .product-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .product {
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin: 10px;
        padding: 20px;
        width: 300px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }
    .product img {
        max-width: 100%;
        border-radius: 5px;
    }
    .product h3 {
        font-size: 1.5em;
        margin: 15px 0;
    }
    .product p {
        font-size: 1em;
        color: #555;
    }
    .product a {
        display: inline-block;
        padding: 10px 20px;
        background-color: #007bff;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 10px;
        transition: background-color 0.3s;
    }
    .product a:hover {
        background-color: #0056b3;
    }
    @media (max-width: 768px) {
        .product {
            width: 100%;
        }
    }