


body{
    font-family: "Red Hat Display", sans-serif;
    background-color: #dbdfe4;
}
.card{
    border: 1px solid #9aacc5;
    border-radius: 0.6rem;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    background-color: #F3F4F4;
}
h1{
    font-size: 2.8rem;
    font-weight: 500;
}
h2{
    font-size: 2.4rem;
}
.card p{
    font-size: 1.1rem;
    padding: 0.5rem;
}
.text-underline {
  border-bottom: 1.5px solid #6984A9;
  padding-bottom: 2px;
}
.img img{
    width: 120px;
    height: 120px;
    border-radius: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 10px 16px;
  background-color: #6984A9; /* WhatsApp green */
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease;
}
.btn:hover {
  background-color: #7994b9;
  transform: translateY(-2px);
}
@media(max-width:720px){
    h1{
        font-size: 1.5rem;
    }
    h2{
        font-size: 1.3rem;
    }
}