/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #121212;
    color: #ffffff; 
}

/* Center the h2 heading */
.centered-heading {
    text-align: center;
    color: #ffcc00;
    margin: 20px 0;
}

/* Products container */
.products-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1100px; /* Ensures a proper width */
    margin: 0 auto; /* Centers the container horizontally */
    padding: 20px;
    border-radius: 10px;
    background: #e5f3fd;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

/* Individual product items */
.product-item {
    padding: 15px;
    border-radius: 8px;
    background: #333333;
    box-shadow: 0 4px 8px rgba(0,0,0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0, 0.3), 0 0 30px rgba(0,0,0, 0.5);
}

/* Product name and description styling */
.product-item strong {
    font-size: 1.2em;
    color: #ffcc00;
    display: block;
    margin-bottom: 10px;
}

.product-item p {
    margin: 0;
    color: #ffffff;
    font-size: 0.95em; /* Slightly smaller font for descriptions */
}

