
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9fcfa;
  margin: 0;
  padding: 0;
  color: #333;
}

.contact-container {
  max-width: 600px;
  margin: 60px auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.contact-container h1 {
  font-size: 2.5rem;
  color: #27ae60;
  margin-bottom: 10px;
}

.contact-container p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

form button {
  background: #27ae60;
  color: white;
  padding: 14px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #1e8d4c;
}

.contact-details {
  margin-top: 40px;
  text-align: left;
}

.contact-details a {
  color: #27ae60;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}




