 html, body {
      height: 100%;
      margin: 0;
      background: #faf9f8;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
      display: flex;
      flex-direction: column;
    }

    /* ---------------- Navigation ---------------- */

    .login-topnav {
      width: 100%;
      height: 92px;
      background: #ffffff;
      border-bottom: 1px solid #ececec;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .nav-left {
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .nav-wordmark {
      height: clamp(42px, 6vw, 80px);
      width: auto;
    }

    .nav-login-btn {
      padding: 8px 22px;
      border: 2px solid #7A5630;
      border-radius: 24px;
      color: #7A5630;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .nav-login-btn:hover {
      background: #7A5630;
      color: #fff;
    }

    /* ---------------- Page layout ---------------- */

    main {
      flex: 1;
      padding: 28px 16px 48px;
    }

    /* ---------------- Language selector ---------------- */

    .page-controls-wrapper {
      margin-top: 12px;
      margin-bottom: 12px;
    }

    .page-controls {
      display: flex;
      justify-content: flex-start;
    }

    .control-group {
      max-width: 220px;
    }

    .control-group label {
      font-size: 0.85rem;
      color: #555;
      margin-bottom: 4px;
    }

    /* ---------------- Content card ---------------- */

    .policy-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 36px 32px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    }

    .policy-title {
      font-size: 2rem;
      font-weight: 700;
      color: #0d6efd;
      margin-bottom: 12px;
      text-align: center;
    }

    .policy-subtitle {
      text-align: center;
      color: #777;
      margin-bottom: 32px;
    }

    .policy-section {
      margin-bottom: 28px;
    }

    .policy-section h5 {
      font-weight: 600;
      margin-bottom: 8px;
      color: #333;
    }

    .policy-section p,
    .policy-section li {
      color: #555;
      line-height: 1.65;
      font-size: 0.95rem;
    }

    @media (max-width: 768px) {
      .login-topnav {
        height: auto;
        padding: 12px 16px;
        flex-wrap: wrap;
      }
    }