/* CONTACT PAGE STYLING */

body {
  background-color: #f5f5f5;
}

.contact-wrapper {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-title {
  text-align: center;
  font-size: 2em;
  color: #01527C;
  margin-bottom: 30px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 10px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 14px 20px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fdfdfd;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #01527C;
  outline: none;
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group button {
  width: 100%;
  padding: 16px;
  font-size: 1em;
  background: #000;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
  transition: background 0.3s ease;
}

.form-group button:hover {
  background: #333;
}
