.contact-form {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #102864;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #D1D5DB;
  border-radius: 8px;
  font-family: "Lucida Sans Unicode";
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: white;
}

/* Hide the default file input */
.form-group input[type="file"] {
  display: none;
}

/* Custom file upload styling */
.file-upload {
  position: relative;
  display: inline-block;
  width: 100%;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 2px dashed #D1D5DB;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #F9FAFB;
}

.file-label:hover {
  border-color: #102864;
  background: #EEF2FF;
}

.file-label svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: #102864;
}

.file-list {
  margin-top: 10px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #F3F4F6;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.file-item button {
  background: none;
  border: none;
  color: #EF4444;
  cursor: pointer;
  font-size: 20px;
  padding: 0 5px;
  line-height: 1;
  transition: color 0.2s ease;
}

.file-item button:hover {
  color: #DC2626;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #102864;
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: #6B7280;
  font-size: 0.85rem;
}
.submit-button {
  width: 100%;
  max-width: 300px;
}
.success-message {
  display: none;
  background-color: #D1FAE5;
  color: #065F46;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 2px solid #10B981;
}
.error-message {
  display: none;
  background-color: #FEE2E2;
  color: #991B1B;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 2px solid #EF4444;
}