/* contact.css */

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  margin-bottom: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.col {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.full {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-bottom: 4px;
}

input[type="text"],
textarea {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1em;
  width: 100%;
}

textarea {
  resize: vertical;
}

.btn {
  padding: 10px 18px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

.btn:hover {
  background-color: #0056b3;
}

.error {
  color: red;
  margin-top: 8px;
}

footer {
  margin-top: 20px;
  font-size: 0.95em;
  text-align: center;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
