    /* Main Footer Styles */
    .main-footer {
      background-color: #06080c;
      border-top: 1px solid #1f2430;
      padding: 60px 40px 30px 40px;
      font-family: "Space Grotesk", sans-serif;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
    }

    .footer-brand-col {
      flex: 2;
      min-width: 250px;
    }

    .footer-logo {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      text-decoration: none;
      display: inline-block;
      margin-bottom: 10px;
    }

    .footer-logo span {
      color: var(--accent-color);
    }

    .footer-desc {
      color: #94a3b8;
      font-size: 0.9rem;
    }

    .footer-links-col {
      flex: 1;
      min-width: 150px;
    }

    .footer-heading {
      color: #fff;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .footer-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-list li {
      margin-bottom: 12px;
    }

    .footer-list a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color 0.2s;
    }

    .footer-list a:hover {
      color: #fff;
    }

    .footer-list svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-lang-col {
      flex: 1;
      min-width: 150px;
      position: relative;
    }

    .lang-selector {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #151922;
      border: 1px solid #1f2430;
      padding: 8px 16px;
      border-radius: 6px;
      color: #fff;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
    }

    .lang-selector img {
      border-radius: 2px;
      width: 20px;
    }

    .lang-dropdown {
      position: absolute;
      bottom: 100%;
      left: 0;
      background: #151922;
      border: 1px solid #1f2430;
      border-radius: 6px;
      margin-bottom: 5px;
      overflow: hidden;
      z-index: 100;
      width: 100%;
    }

    .lang-option {
      padding: 8px 16px;
      color: #94a3b8;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background 0.2s;
    }

    .lang-option:hover {
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
    }

    .lang-option img {
      border-radius: 2px;
      width: 20px;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 30px;
      border-top: 1px solid #1f2430;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-copy p {
      color: #94a3b8;
      font-size: 0.85rem;
      margin: 0 0 5px 0;
    }

    .footer-disclaimer {
      color: #64748b !important;
      font-size: 0.75rem !important;
    }

    .trdn-badge {
      display: flex;
      align-items: center;
      border: 1px solid #1f2430;
      border-radius: 6px;
      padding: 6px 12px;
      background: #151922;
      gap: 10px;
    }

    .trdn-badge span {
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .trdn-badge strong {
      color: #fff;
      font-size: 1.2rem;
      font-weight: 900;
      letter-spacing: 2px;
      font-family: "Orbitron", sans-serif;
    }

    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }
      .footer-brand-col, .footer-links-col, .footer-lang-col {
        width: 100%;
        min-width: 100%;
      }
    }
