/* Center & constrain the form */
  .container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 1rem;
  }

  /* Form title */
  .contact-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #333;
  }

  /* Two-column row */
  .contact-form .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .contact-form .form-row .col {
    flex: 1 1 0;
  }

  /* Inputs & textarea */
  .contact-form input.form-control,
  .contact-form textarea.form-control {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }

  /* Submit button */
  .contact-form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1.125rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .contact-form button[type="submit"]:hover {
    background-color: #222;
  }

  /* ensure the inputs & textarea inherit your page font */
.contact-form input.form-control,
.contact-form textarea.form-control {
  font-family: inherit;     /* or your specific font, e.g. "Roboto", sans-serif */
}

/* style the placeholder text */
.contact-form input.form-control::placeholder,
.contact-form textarea.form-control::placeholder {
  font-family: inherit;     /* same as above */
  opacity: 1;               /* make it fully opaque so you really see the font */
  color: #888;              /* (optional) tweak placeholder color */
}

/* vendor prefixes for broader support */
.contact-form input.form-control::-webkit-input-placeholder,
.contact-form textarea.form-control::-webkit-input-placeholder {
  font-family: inherit;
}
.contact-form input.form-control:-ms-input-placeholder,
.contact-form textarea.form-control:-ms-input-placeholder {
  font-family: inherit;
}

/* CONTACT CARD STYLES */
.contact-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 2rem auto;  /* center and give some vertical space */
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  color: #222;
  font-weight: 500;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #444;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.contact-list .icon {
  display: inline-block;
  width: 1.6rem;
  text-align: center;
  margin-right: 0.75rem;
  font-size: 1.2rem;
  color: #555;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}
