body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

#contactDivHolder {
  display: block;
  width: 860px;
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.contactTitle {
  font-size: 2.5em;
  color: #004080;
  font-weight: 600;
}

.contactSubtitle {
  font-size: 1.2em;
  color: #004080;
  font-weight: 600;
  margin-bottom: 30px;
}

#contactDivFirstRow {
  display: inline-flex;
}

#contactDivSecondRow {
  display: inline-flex;
}

.contactDiv {
  width: 300px;
  border: solid;
  border-width: 4px;
  border-color: #004080;
  border-radius: 10px;
  padding: 10px 10px 25px 10px;
  text-align: center;
  margin: 20px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.contactDiv:hover {
  transform: scale(1.05);
}

.contactDepartment {
  font-size: 1.5em;
  color: #004080;
  font-weight: bold;
}

.contactDescription {
  font-size: 1em;
  color: #555;
  margin: 10px 0;
}

.emailLink {
  font-size: 1.2em;
  color: #004080;
  text-decoration: none;
  font-weight: bold;
}

.emailLink:hover {
  text-decoration: underline;
  color: #007bff;
}

@media screen and (max-width: 1000px) {
  #contactDivHolder {
    width: 360px;
  }

  #contactDivFirstRow {
    display: block;
  }

  #contactDivSecondRow {
    display: block;
  }

  .contactDiv {
    margin: 20px auto;
  }
}
