.contact-container {
  max-width: 800px;
  width: 100%;
}
.contact-container h2 {
  font-family: 'Fredoka One', monospace;
  font-size: 28px;
  text-align: center;
  color: #000;
  position: relative;
  margin-bottom: 30px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px; 
  width: 96%;
  margin-left: 10px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.row input {
  flex: 1 1 48%;
}
input, textarea {
  padding: 15px;  
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  resize: none;
}
button {
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  background: #0071eb;
  color: white;
  border: none; 
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: #005bb5;
}