body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header Styling */
header {
  background: #111;
  color: white;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

header h1 {
  margin: 0;
  font-size: 1.8em;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #0f0;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
}

/* Main Sections */
main section {
  margin: 30px 0;
}

/* Product Layout */
.products {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.product {
  background: white;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 32%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* Call to Action Button */
.cta button {
  padding: 12px 20px;
  background: green;
  color: white;
  font-size: 1em;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #0f0;
  margin: 0 10px;
  text-decoration: none;
}
form {
  background: white;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto 40px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1em;
  margin-bottom: 15px;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
}

form textarea {
  resize: vertical;
}

form button {
  background-color: green;
  color: white;
  padding: 12px 24px;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #006400;
}

iframe {
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}