   /* Footer */
   .footer {
    background: #000000;
    color: #e5e5e5;
    padding: 1.5rem 2rem;
    font-family: 'Times New Roman', Times, serif;
    border-top: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .footer img {
    width: 40px;
    height: 40px;
  }

  .footer a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer a:hover {
    color: #ffffff;
  }

  .footer span {
    font-size: 1rem;
    color: #cccccc;
  }
  @media (max-width: 640px) {
    .footer {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
  }