footer.custom-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 20px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    gap: 20px;
  }

  footer.custom-footer .footer-section {
    flex: 1;
    min-width: 250px;
  }

  footer.custom-footer a {
    color: #ccc;
    margin-right: 15px;
    text-decoration: none;
    font-size: 14px;
  }

  footer.custom-footer .newsletter form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  footer.custom-footer input[type="email"] {
    padding: 8px;
    max-width: 220px;
    width: 100%;
  }

  footer.custom-footer button {
    padding: 8px 12px;
    background-color: #ce9325;
    border: none;
    color: #ffffff;
    cursor: pointer;
  }

  footer.custom-footer .social {
    text-align: right;
  }

  footer.custom-footer .social a {
    font-size: 18px;
    margin-right: 10px;
  }

  footer.custom-footer .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444343;
    padding-top: 10px;
    font-size: 14px;
    color: #666;
  }

  /* Responsive layout */
  @media (max-width: 768px) {
    footer.custom-footer {
      flex-direction: column;
      text-align: center;
    }

    footer.custom-footer .social {
      text-align: center;
    }
  }