.venstore-footer {
    background-color: #1e1e1e;
    color: #f0f0f0;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid #444;
    padding-bottom: 30px;
  }
  
  .footer-brand h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffcc00;
  }
  
  .footer-brand p {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-links {
    display: flex;
    gap: 40px;
  }
  
  .footer-links h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffcc00;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-newsletter h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffcc00;
  }
  
  .footer-newsletter form {
    display: flex;
    gap: 10px;
  }
  
  .footer-newsletter input {
    padding: 8px;
    border: none;
    border-radius: 4px;
    flex: 1;
  }
  
  .footer-newsletter button {
    padding: 8px 16px;
    background-color: #ffcc00;
    border: none;
    border-radius: 4px;
    color: #1e1e1e;
    cursor: pointer;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 13px;
  }
  
  .social-icons a {
    margin-left: 10px;
  }
  
  .social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }