body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;

}

header {
background-color: #000;
color: #fff;
padding: 20px 0;
}

header .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: block;
width: 200px;
}

.navigation {
display: flex;
}

.navigation li {
margin-right: 20px;
}

.navigation li:last-child {
margin-right: 0;
}

.navigation a {
color: #fff;
text-decoration: none;
}

.hero-section {
background-image: url("https://images.unsplash.com/photo-1534947459113-27c3d90074cd");
background-size: cover;
background-position: center;
height: 600px;
display: flex;
justify-content: center;
align-items: center;
}

.hero-section h1 {
font-size: 48px;
color: #fff;
text-align: center;
}

.hero-section p {
font-size: 24px;
color: #fff;
text-align: center;
margin-top: 20px;
}

.products-section {
background-color: #f2f2f2;
padding: 40px 0;
}

.product-item {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40px;
}

.product-item img {
width: 100px;
height: auto;
}

.product-title {
font-size: 18px;
color: #000;
text-align: center;
margin-top: 10px;
text-decoration: none;
}

.about-section {
background-color: #fff;
padding: 40px 0;
}

.about-section h2 {
font-size: 36px;
color: #000;
text-align: center;
}

.about-section p {
font-size: 18px;
color: #000;
text-align: center;
margin-top: 20px;
}

.button {
display: inline-block;
background-color: #000;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
}

.button:hover {
background-color: #333;
}

footer {
background-color: #f2f2f2;
padding: 20px 0;
}

footer .container {
display: flex;
justify-content: space-between;
align-items: center;
}

footer nav ul {
display: flex;
list-style: none;
}

footer nav li {
margin-right: 20px;
}

footer nav li:last-child {
margin-right: 0;
}

footer nav a {
color: #000;
text-decoration: none;
}

.social-media {
display: flex;
}

.social-media img {
width: 40px;
height: auto;
margin-right: 10px;
}

.legal-info {
font-size: 14px;
color: #666;
text-align: center;
margin-top: 20px;
}

.legal-info a {
color: #666;
text-decoration: none;
margin-left: 10px;
}

.legal-info a:first-child {
margin-left: 0;
}