/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f4;
    color: #333;
}

/* Header */
header {
    background-color: #4CAF50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
header h1 { font-size: 2em; }
nav { margin-top: 10px; }
nav a { margin: 0 15px; font-weight: bold; transition: color 0.3s; }
nav a:hover { color: #dcedc8; }

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: url('https://images.unsplash.com/photo-1607746882042-944635dfe10e?fit=crop&w=1600&q=80') no-repeat center center/cover;
    color: #fff;
}
.hero h2 { font-size: 2.5em; margin-bottom: 20px; text-shadow: 1px 1px 4px rgba(0,0,0,0.5); }
.hero p { font-size: 1.2em; margin-bottom: 30px; text-shadow: 1px 1px 4px rgba(0,0,0,0.5); }
.hero button {
    padding: 15px 30px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #dcedc8;
    color: #4CAF50;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.hero button:hover {
    background-color: #c5e1a5;
    transform: scale(1.05);
}

/* Products Section */
.products { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.products h3 { text-align: center; margin-bottom: 40px; font-size: 2em; color: #4CAF50; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.product-card img { width: 100%; height: 200px; object-fit: cover; }
.product-card .info { padding: 20px; }
.product-card .info h4 { margin-bottom: 10px; color: #333; }
.product-card .info p { margin-bottom: 15px; font-size: 0.95em; color: #666; }
.product-card .info button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.product-card .info button:hover {
    background-color: #43a047;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
footer p { font-size: 0.9em; }
