```css
body {
  background-color: #f2f2f2;
  font-family: 'Segoe UI', sans-serif;
}

form {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h1, h2 {
  text-align: center;
  color: #00754a;
  margin-bottom: 10px;
}

fieldset {
  border: none;
  margin-bottom: 25px;
}

legend {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #00754a;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #444;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  box-sizing: border-box;
}

input[type="submit"] {
  background-color: #00754a;
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 12px 20px;
  margin-top: 20px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #005f3a;
}
```
submit-container {
  text-align: right;
  margin-top: 20px;
}

button[type="submit"] {
  background-color: green; /* Green */
  color: white;
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #218838;
}
.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
}
```
css
.social-buttons {
  margin-top: 15px;
}

.social-buttons a {
  margin-right: 10px;
}

.facebook-btn {
  background-color: #1877f2;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.facebook-btn:hover {
  background-color: #0e65d2;
}
.website-btn {
  background-color: #28a745;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  margin-left: 10px;
}

.website-btn:hover {
  background-color: #218838;
css
}