* {
  margin: 0;
  padding: 0;
}

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

header {
  background-color: #333;
  color: #fff;
  padding: 15px;
  text-align: center;
}

.navbar {
  width: 100%;
  height: 75px;
  margin: auto;
  background-color: #002f88;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.icon {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.logo {
  height: 50px;
  width: 70px;
  margin-left: 10px;
}

.logo-text {
  color: white;
  font-size: 35px;
  font-family: Arial;
  float: left;
  padding-top: 10px;
  padding-left: 5px;
}

.menu {
  width: 670px;
  float: left;
  height: 70px;
}

ul {
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul li {
  list-style: none;
  margin-left: 62px;
  margin-top: 27px;
  font-size: 15px;
}

ul li a {
  text-decoration: none;
  color: #fff;
  font-family: Arial;
  font-weight: bold;
  transition: 0.4s ease-in-out;
}

abbr {
  text-decoration: none;
}

nav a {
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 36px;
  color: #333;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.contact-box {
  background: #fff;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 30%;
  min-width: 250px;
  text-align: center;
}

.contact-box h3 {
  margin-bottom: 10px;
  color: #333;
}

iframe {
  border: 0;
  width: 100%;
  height: 300px;
  margin-top: 20px;
}

.social-media {
  text-align: center;
  margin-top: 40px;
}

.social-media a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-size: 20px;
}

footer {
  background-color: #002f88;
  color: #fff;
  padding: 15px;
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-box {
    width: 80%;
  }
}