.products-container {
    width: 100%;
    height: 100vh;
    background-color: #f8f8f8;
    overflow: hidden;
}
.products-section {
    padding: 50px 20px;
    color: #333;
}

.products-header {
    text-align: center;
    margin-bottom: 40px;
}

.products-header h2 {
    font-size: 36px;
    color: #2c3e50;
}

.products-header p {
    font-size: 18px;
    color: #7f8c8d;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    justify-items: center;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.product-info {
    margin-top: 15px;
    padding: 10px;
}

.product-title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-description {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.product-price {
    font-size: 18px;
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    background-color: #f39c12;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e67e22;
}

/* Media Queries for Small Screens */
@media (max-width: 768px) {
    .products-section {
        padding: 30px 15px;
    }

    .products-header h2 {
        font-size: 28px;
    }

    .products-header p {
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}