/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

/* Header Section */
header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.disclaimer {
    background-color: #f39c12;
    color: #333;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
}

/* Main Content */
main {
    padding: 20px;
    text-align: center;
}

.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.product:hover {
    transform: scale(1.05);
}

.product a {
    text-decoration: none;
    color: #333;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.product-details {
    padding: 15px;
    text-align: left;
}

.product-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-details p {
    font-size: 1rem;
    color: #555;
}

.product a:hover .product-details h3 {
    color: #f39c12;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products {
        flex-direction: column;
        align-items: center;
    }
}
