/* --- Contact Information Styling --- */
/* --- Contact Form --- */
.contactWidth {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
  }
  
  .contactIcon {
    width: 1.8rem;
    height: 1.8rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  input,
  textarea {
    padding: 0.8rem;
    border: 1px solid #0B3D91;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  button {
    background: #0B3D91;
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  button:hover {
    background: #0055aa;
  }
  /* using Awesome Font telephone icons */
/* .contact-info-container { */
    /*max-width: 80vw; *//* Optional: Constrain the width for neatness */
    /* margin: 30px auto;
    padding: 0 1.5rem;
} */

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* Spacing between items */
    font-size: 1.1rem;
    color: #0B3D91; /* Matches your firm's primary color */
    line-height: 1.5;
}

.contact-item i {
    /* Styles for the icons (Fa icons) */
    font-size: 1.25rem;
    width: 30px; /* Gives a fixed space for the icons */
    text-align: center;
    margin-right: 15px;
    color: #0B3D91; /* Ensure icons are the primary color */
    
    /* THE FIX: Forces the icon to align perfectly with the text's midline */
    /* vertical-align: middle;  */
}

.contact-item a {
    /* Styles links to match the surrounding text color */
    color: #0B3D91;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #0055aa; /* Slightly darker blue on hover */
}