* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
}

header h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f4a261;
}

#hero {
  background: url('https://france3-regions.francetvinfo.fr/image/LByhnPD_4k65Z_ozmWrUTTPrRp4/930x620/filters:format(webp)/regions/2024/10/15/whatsapp-image-2024-10-15-at-14-56-25-670e669d3662b298925548.jpeg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}

#hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

#hero .btn {
  display: inline-block;
  background: #f4a261;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

#hero .btn:hover {
  background: #e76f51;
}

section {
  padding: 3rem 0;
}

#about p {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

#products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

#products .product {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 1rem;
}

#products .product img {
  width: 100%;
  border-bottom: 3px solid #f4a261;
}

#products .product h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

#products .product p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

#products .btn {
  background: #f4a261;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

#products .btn:hover {
  background: #e76f51;
}

#services ul {
  list-style: none;
  text-align: center;
}

#services ul li {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

#contact form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#contact form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

#contact form input,
#contact form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contact form button {
  display: inline-block;
  background: #f4a261;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

#contact form button:hover {
  background: #e76f51;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

footer p {
  font-size: 0.9rem;
}