  .legal-page {
    max-width: 960px;
    width: min(960px, calc(100% - 24px));
    margin: 40px auto;
    padding: 32px 24px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    line-height: 1.6;
    font-size: 15px;
    box-sizing: border-box;
    overflow-wrap: anywhere;
  }

  .legal-page h1,
  .legal-page h2,
  .legal-page h3 {
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 12px;
  }

  .legal-page h1 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .legal-page .legal-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
  }

  .legal-page section {
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
  }

  .legal-page section:first-of-type {
    border-top: none;
  }

  .legal-page p {
    margin: 6px 0 10px;
    font-weight: 500;
    overflow-wrap: anywhere;
  }

    /* Bullets για όλες τις λίστες μέσα στη legal-page */
    .legal-page ul {
    list-style: none;                /* αφαιρούμε default bullets */
    margin-left: 0;
    padding-left: 0;
    }

    .legal-page ul li {
    position: relative;
    padding-left: 20px;              /* χώρος για το bullet */
    margin: 4px 0;
    font-weight: 500;
    overflow-wrap: anywhere;
    }

    /* Custom bullet */
    .legal-page ul li::before {
    content: "•";                    /* ο κλασικός bullet */
    position: absolute;
    left: 0;
    top: 0;
    color: #1e293b;                  /* Slate-800 (μοντέρνο, διακριτικό) */
    font-size: 14px;
    line-height: 1.4;
    }


  .legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .legal-badge span.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
  }

  .legal-highlight {
    font-weight: 500;
    color: #0f172a;
  }

  .legal-link {
    color: var(--main-primary-color);
    font-weight: 700;
    text-decoration: none;
  }

  .legal-link:hover {
    text-decoration: underline;
  }

  .legal-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
  }

  .legal-table-wrapper {
    margin-top: 8px;
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .legal-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin-top: 6px;
    font-size: 13px;
    table-layout: fixed;
  }

  .legal-table th,
  .legal-table td {
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    text-align: left;
    vertical-align: top;
    font-weight: 500;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .legal-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #0f172a;
  }

  .legal-table tr:nth-child(even) td {
    background: #f9fafb;
  }

  .legal-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    background: #ecfdf5;
    color: #16a34a;
  }

  .legal-section-label {
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
  }

  @media (max-width: 640px) {
    .legal-page {
      margin: 24px 12px;
      width: calc(100% - 24px);
      padding: 20px 16px;
      border-radius: 14px;
      font-size: 14px;
    }

    .legal-page h1 {
      font-size: 22px;
    }

    .legal-table {
      font-size: 12px;
    }

    .legal-table th,
    .legal-table td {
      padding: 8px;
    }
  }
