.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 2rem 1rem 1rem;
    font-family: Arial, sans-serif;
  }

  .footer_container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }

  .footer_container > div {
    flex: 1 1 250px;
  }

  .footer_links>h3,
  .footer_contact>h3 {
    margin-bottom: 1rem;
    color: #f1f5f9;
  }

  ._ul {
    list-style: none;
    padding: 0;
  }

  .footer_links>ul>li {
    margin-bottom: 0.5rem;
  }

  .footer_links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer_links a:hover {
    color: #60a5fa;
  }

  .footer_contact p {
    margin: 0.3rem 0;
  }

  .footer_bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
    font-size: 0.9rem;
    color: #64748b;
  }

  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }

    .footer-container > div {
      flex: none;
      margin-bottom: 1.5rem;
    }
  }