/* Contact Us Page Styles */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  header {
    background-color: #333333;
    color: #ffffff;
    padding: 20px;
    text-align: center;
  }
  
  header h1 {
    font-size: 28px;
    margin: 0;
  }
  
  .contact-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 5px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
  }
  
  .contact-form input[type="submit"] {
    background-color: #333333;
    color: #ffffff;
    cursor: pointer;
    border: none;
  }
  
  .contact-form input[type="submit"]:hover {
    background-color: #555555;
  }
  
  .employee-list {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .content-container {
    margin: 0 auto;
    padding-left: 2in;
    padding-right: 2in;
}

.contact-employee-wrapper {
    display: flex;
    justify-content: space-between; /* Add space between contact form and employee list */
}

.contact-form {
    flex: 1;
    margin-right: 1.5rem; /* Adjust the margin for spacing */
}

.employee-list {
    flex: 1;
    margin-left: 1.5rem; /* Adjust the margin for spacing */
}

/* Additional styling for better presentation */
.contact-form form {
    width: 100%;
}

.employee {
    display: flex;
    margin-bottom: 1.5rem;
}

.employee img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
}

.details {
    flex: 1;
}


.employee {
    display: flex;
    margin-bottom: 1.5rem;
}

.employee img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
}

.details {
    flex: 1;
}


  .employee {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .employee-list h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333333;
  }
  
  .employee-list h3 {
    margin-bottom: 5px;
    color: #333333;
  }
  
  .employee-list p {
    margin: 5px 0;
    color: #666666;
  }

  .employee .details {
    flex: 1;
  }

  .employee img {
    width: 100px;
    height: auto;
    border-radius: 50%;
    margin-right: 20px;
  }
  
  .footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666666;
  }



  