/* Contact Page Styles */
.contact-container {
  max-width: 650px;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Arial, sans-serif;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #222;
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
}

.contact-form label span {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0078ff;
  outline: none;
}

.contact-form button {
  background: #0078ff;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #005dc1;
}

.success-msg {
  background: #e6ffed;
  border: 1px solid #8ae68a;
  padding: 10px;
  color: #256029;
  border-radius: 6px;
  margin-bottom: 15px;
  text-align: center;
}

.error-msg {
  background: #ffecec;
  border: 1px solid #ff6b6b;
  padding: 10px;
  color: #a30000;
  border-radius: 6px;
  margin-bottom: 15px;
  text-align: center;
}