.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0px;
}
 
.card {
  background: #fff;
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
 
.card h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}
 
.card h2 {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #e7445d;
}
 
/* .card h3 {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #2c3e50;
} */
 
.card p {
  margin-bottom: 15px;
  font-size: 16px;
}
 
.card ul {
  padding-left: 20px;
  margin-bottom: 15px;
}
 
.card ul li {
  margin-bottom: 10px;
  font-size: 16px;
}
 
.contact {
  margin-top: 30px;
  background: #f1f7ff;
  padding: 20px;
  /* border-left: 4px solid #1842b6; */
  border-radius: 8px;
}
 
a {
  color: #0077cc;
  text-decoration: none;
}

.company_footer{
  font-size: 21px;
  background: linear-gradient(90deg, rgba(13, 64, 112, 0.76) 27%, rgba(144, 18, 37, 0.76) 65%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
 
/* Responsive */
@media (max-width: 768px) {
  .card {
    padding: 20px;
  }
 
  .card h1 {
    font-size: 1.6rem;
  }
 
  .card h2 {
    font-size: 1.
  }
}