.content {
  width: 100%;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

.content h1 {
  text-align: center;
}

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

.contact-form {
  background-color: white;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #343a40;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-error {
  color: #dc3545;
  margin-bottom: 15px;
  padding: 10px 0;
}

.form-success {
  color: #28a745;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 15px;
}

.captcha-container {
  margin-bottom: 20px;
}

.form-action {
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: left;
  width: 100%;
}

.submit-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #0069d9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-container {
    padding: 0 15px;
  }
}
