.footer_nav {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 40px 24px;
      background-color: #081730;
    }

    .footer_nav-label {
      text-align: center;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #29b6cf;
      margin-bottom: 20px;
    }

    .footer_nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      list-style: none;
      margin: 0 auto;
    }

    .footer_nav-links a {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid rgba(41,182,207,0.35);
      background-color: rgba(41,182,207,0.07);
      color: #fff;
      font-size: 0.83rem;
      font-weight: 500;
      transition: background-color 0.2s, border-color 0.2s;
    }
    .footer_nav-links a:hover {
      background-color: rgba(41,182,207,0.22);
      border-color: rgba(41,182,207,0.7);
    }

    .footer_nav-links a svg {
      width: 13px; 
      height: 13px;
      stroke: #29b6cf; 
      fill: none;
      stroke-width: 2.5; 
      stroke-linecap: round; 
      stroke-linejoin: round;
      flex-shrink: 0;
    }