.footer-area {
    background-color: #f9f9f9;
    color: #333;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .tp-footer-top {
    padding: 60px 0;
  }
  
  .tp-footer-widget {
    margin-bottom: 30px;
  }
  
  .tp-footer-widget-logo img {
    max-width: 140px;
    height: auto;
  }
  
  .footer-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .footer-contact,
  .footer-links {
    list-style: none;
    padding: 0;
    font-size: 14px;
  }
  
  .footer-contact li,
  .footer-links li {
    margin-bottom: 10px;
    color: #555;
  }
  
  .footer-contact li i,
  .footer-links li i {
    color: #007BFF;
    margin-right: 8px;
  }
  
  .footer-contact a,
  .footer-links a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
  }
  
  .footer-contact a:hover,
  .footer-links a:hover {
    color: #007BFF;
  }
  
  .footer-newsletter {
    display: flex;
    margin-top: 10px;
    margin-bottom: 15px;
  }
  
  .footer-newsletter input[type="email"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
  }
  
  .footer-newsletter button {
    padding: 0 16px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
  }
  
  .newsletter-note {
    font-size: 13px;
    color: #777;
  }
  
  .footer-social a {
    color: #007BFF;
    margin-right: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
  }
  
  .footer-social a:hover {
    transform: scale(1.2);
  }
  
  .footer-bottom {
    font-size: 13px;
    color: #555;
    background-color: #f1f1f1;
    padding: 15px 0;
  }
  
  .footer-bottom a {
    color: #007BFF;
    text-decoration: none;
    margin-left: 15px;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  @media screen and (max-width: 768px) {
    .footer-newsletter {
      flex-direction: column;
    }
  
    .footer-newsletter input[type="email"],
    .footer-newsletter button {
      width: 100%;
      border-radius: 4px;
    }
  
    .footer-newsletter button {
      margin-top: 10px;
    }
  
    .tp-footer-widget {
      text-align: center;
    }
  
    .footer-social {
      justify-content: center;
    }
  }
  