/* Global Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
header {
background: #0073e6;
color: white;
padding: 20px 0;
text-align: center;
}
header .logo {
font-size: 24px;
font-weight: bold;
}
nav ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
gap: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
font-size: 16px;
}
#hero {
background: url(‘https://via.placeholder.com/1920×600’) no-repeat center center/cover;
color: white;
text-align: center;
padding: 80px 20px;
}
.cta-button {
background: #ff5722;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
text-decoration: none;
font-size: 18px;
}
#products {
padding: 40px 20px;
text-align: center;
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.product-card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-align: center;
}
footer {
background: #333;
color: white;
text-align: center;
padding: 10px 0;
margin-top: 20px;
}