* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #20232a;
  color: #fff;
  padding: 20px;
  text-align: center;
}

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

nav a {
  color: #ddd;
  margin: 0 10px;
  text-decoration: none;
}

nav a:hover {
  color: #fff;
}

.hero {
  background: url('https://placehold.co/1200x400') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  background-color: #333;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

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

.btn {
  background-color: #ff6600;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
}

.btn:hover {
  background-color: #e65c00;
}

.products {
  padding: 40px 20px;
  text-align: center;
}

.products h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

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

.product-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about, .contact {
  padding: 40px 20px;
  text-align: center;
}

.about h3, .contact h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

form {
  max-width: 400px;
  margin: 0 auto;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  padding: 12px;
  background-color: #20232a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #333;
}

footer {
  background-color: #20232a;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
  position: relative;
}

footer .whatsapp-icon {
  display: inline-block;
  margin-top: 10px;
}
footer .whatsapp-icon img {
  vertical-align: middle;
}
.thank-you {
  text-align: center;
  padding: 100px 20px;
}
.thank-you h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.thank-you p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.logo {
  height: 60px;
  margin: 10px 0;
}
