.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .service-link:hover .service-item {
    transform: translateY(-5px);
    transition: 0.3s ease;
  }
  .footer {
    background: pink;
    color: black;
    padding: 60px 0 30px;
  }
  
  .footer h4, .footer h5 {
    color: black;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .footer p {
    line-height: 26px;
  }
  
  .footer ul {
    list-style: none;
    padding: 0;
  }
  
  .footer ul li {
    margin-bottom: 10px;
  }
  
  .footer ul li a {
    color: black;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer ul li a:hover {
    color: #ff6600;
  }
  
  .footer-newsletter input {
    width: 70%;
    padding: 10px;
    border: none;
    outline: none;
    margin-right: 5px;
    border-radius: 3px;
  }
  
  .footer-newsletter button {
    padding: 10px 15px;
    background: #ff6600;
    color: black;
    border: none;
    border-radius: 3px;
    transition: 0.3s;
  }
  
  .footer-newsletter button:hover {
    background: #e05700;
  }
  
  .footer .copyright {
    color: black;
    margin-top: 30px;
  }
  
  .footer .copyright a {
    color: #ff6600;
    text-decoration: none;
  }
  
  