.contact-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form h1 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-form p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1E6FF6;
  box-shadow: 0 0 0 2px rgba(30, 111, 246, 0.2);
}

.btn.primary {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  background-color: #1E6FF6;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn.primary:hover {
  background-color: #185abc;
}

nav a {
  text-decoration: none;
  color: #6B7280;
  margin: 0 12px;
  font-weight: 500;
}
