.products-section {
    display: flex;
    justify-content: space-between;
    padding: 0 3vw;
}

.product {
    width: 30%;
    text-align: center;
    padding-bottom: 40px;
}

.product-image-container {
    padding: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-image-container:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.product-image-container img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.product h3 {
    margin-bottom: 10px;
}

.product p {
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .products-section {
        flex-direction: column; /* Stack products vertically */
        padding: 0 20px; /* Adjust padding for tablets */
    }
    .product {
        width: 100%; /* Full width for products on tablets */
        margin-bottom: 30px; /* Add space between stacked products */
    }
    .product h3 {
        font-size: 1.1rem; /* Adjusted font size for tablets */
    }
    .product p {
        font-size: 0.85rem; /* Adjusted font size for tablets */
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 0 15px; /* Adjust padding for mobile */
    }
    .product {
        margin-bottom: 20px; /* Adjust space for mobile */
    }
    .product h3 {
        font-size: 1rem; /* Adjusted font size for mobile */
    }
    .product p {
        font-size: 0.8rem; /* Adjusted font size for mobile */
    }
}
