.contact-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #e8f5e9, #f4f7f4);
  display: flex;
  justify-content: center;
}

.contact-card {
  background: white;
  width: 100%;
  max-width: 600px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
  margin-top: 0;
  color: #2f5d3a;
}

.contact-card p {
  color: #555;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #2c3e2c;
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

input:focus, textarea:focus, select:focus {
  border-color: #3e7a4b;
  outline: none;
}

button {
  width: 100%;
  padding: 12px;
  background: #3e7a4b;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #2f5d3a;
}