    /* Footer CSS - Matches Kaswords.com Exactly */
    .kas-footer {
     /* background: #000;*/
      background: rgb(41, 66, 114);
      color: #fff;
      font-family: Arial, sans-serif;
    }
    .footer-top {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-column h3 {
      color: #e30613; /* Red accent like your header */
      margin-bottom: 15px;
      font-size: 16px;
      font-weight: bold;
    }
    .footer-column ul {
      list-style: none;
    }
    .footer-column li {
      margin-bottom: 8px;
    }
    .footer-column a {
      color: #ccc;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    .footer-column a:hover {
      color: #fff;
    }
    .newsletter-form {
      display: flex;
      margin: 15px 0;
    }
    .newsletter-form input {
      flex: 1;
      padding: 10px;
      border: none;
      background: #333;
      color: #fff;
    }
    .newsletter-form button {
      padding: 10px 15px;
      background: #e30613;
      color: #fff;
      border: none;
      cursor: pointer;
    }
    .social-icons a {
      display: inline-block;
      margin-right: 10px;
      font-size: 20px;
      color: #ccc;
      transition: color 0.3s;
    }
    .social-icons a:hover { color: #e30613; }
    .footer-bottom {
      background: #111;
      
      text-align: center;
      padding: 20px;
      border-top: 1px solid #333;
    }
    .payment-icons {
      margin-bottom: 10px;
    }
    .payment-icons img {
      margin: 0 5px;
      height: 30px;
    }
    .footer-bottom p {
      font-size: 12px;
      color: #999;
    }

    /* Mobile Responsive - Stacks to 1 column */
    @media (max-width: 768px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
      }
      .newsletter-form { flex-direction: column; }
      .newsletter-form input { margin-bottom: 10px; }
    }