@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background: #f4f7fb;
}

div h1 {
  font-size: 40px;
  text-align: center;
  color: #0a3d62;
  margin-top: 200px;
}

div h2 {
  color: #0a3d62;
  text-align: center;
  padding: 20px 0;
}

ol li {
  font-size: 20px;
  margin-left: 20px;
  font-weight: 600;
  color: #0a3d62;
  padding: 5px 0;
}

ul {
  list-style-type: disc;
}

ul li {
  color: #374151;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 0;
}

.highlighted {
  color: red;
  font-size: 1.1rem;
  font-weight: bold;
}

.span-li {
  list-style: none;
}

.link-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-div a {
  padding: 10px 20px;
  background: #0a3d62;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  margin: 50px 50px;
}
.contact-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}
.contact-div a{
  text-decoration: none;
  color: #374151;
  font-weight: bold;
}
.contact-div a:hover i{
  color: #833AB4;
}
.contact-div a i{
  font-size: 30px;
  padding: 5px 5px;
  margin: 0 10px;
  color: #E1306C;
}
.contact-div span{
  color: #374151;
  font-weight: bold;
}
.contact-div span i{
  font-size: 30px;
  padding: 5px 5px;
  margin: 0 10px;
  color: #374151;
}

@media (max-width: 768px) {
  div h1{
    font-size: 30px;
    margin-top: 0;
  }
  .link-div {
    flex-direction: column;
  }

  .link-div a {
    padding: 10px;
    margin: 10px 0;
  }
}