.tv-footer {
    background: #05050c;
    color: #e5e7eb;
    padding-top: 80px;
    font-family: inherit;
    position: static;
    bottom: 0;
  }
  
  .tv-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
  }
  
  .tv-footer-logo img {
    height: 5rem;
    margin-bottom: 16px;
  }
  
  .tv-footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
    max-width: 360px;
  }
  
  /* Headings */
  .tv-footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
  }
  
  /* Lists */
  .tv-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .tv-footer-col ul li {
    margin-bottom: 10px;
  }
  
  .tv-footer-col ul li a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 14.5px;
    transition: color 0.2s ease;
  }
  
  .tv-footer-col ul li a:hover {
    color: #ff4305;
  }
  
  /* Contact CTA */
  .tv-footer-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 18px;
    background: #ff4305;
    color: #ffffff !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
  }
  
  /* Bottom Bar */
  .tv-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 60px;
    text-align: center;
  }
  
  .tv-footer-bottom p {
    font-size: 13.5px;
    color: #9ca3af;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .tv-footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      padding: 0 30px 50px;
    }
  }
  
  @media (max-width: 520px) {
    .tv-footer-container {
      grid-template-columns: 1fr;
    }
  
    .tv-footer-bottom {
      padding: 20px 30px;
    }
  }
  