    footer .container{
    width:96%;
    max-width:1800px;
    }

   footer {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #050b12;
      color: #ffffff;
      padding: 18px 0;
      font-size: 0.95rem;
      z-index: 100;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    
    .footer-content {
      width: min(1600px, 94%);
      margin: auto;
      display: flex;
      justify-content: space-between;
      gap: 80px;
      flex-wrap: wrap;
      align-items: center;
    }

    footer strong {
      color: var(--white);
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 18px;
      color: #e5e7eb;
    }

    .footer-content p {
    color: #e5e7eb;
    }

    .footer-content strong {
      color: #ffffff;
    }

    .footer-links button:hover {
      color: #e8d9b0;
    }

    .footer-links button {
      background: none;
      border: none;
      color: inherit;
      font: inherit;
      cursor: pointer;
    }

    .footer-links button:hover {
      color: #e8d9b0;
    }

    .separator {
        color: rgba(255,255,255,0.25);
        font-size: 14px;
        user-select: none;
    }

    