/* Ensure <p> tags that wrap the form controls take full width */
.contact-card form p {
  margin-bottom: 15px; /* Add spacing between form fields */
  width: 100%; /* Ensure full width */
}

/* Ensure form controls take full width */
.contact-card form .form-control {
  width: 100%; /* Full width for inputs and textareas */
  box-sizing: border-box; /* Include padding and border in the width */
}

/* Additional styling for form controls */
.contact-card form label {
  font-weight: 600;
}

/* Button styling */
.form-submit {
  text-align: center;
  margin-top: 20px;
}

.form-submit .btn {
  width: 100%;
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 5px;
  background-color: #007bff;
  border-color: #007bff;
}

.form-submit .btn:hover {
  background-color: #0056b3;
  border-color: #004085;
}

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

  .contact-heading {
      font-size: 1.75rem;
  }

  .form-submit .btn {
      font-size: 1rem;
      padding: 10px;
  }
}
